mirror of https://github.com/nocodb/nocodb
Wing-Kam Wong
2 years ago
6 changed files with 287 additions and 294 deletions
@ -1,33 +1,31 @@
|
||||
version: '2.4' |
||||
|
||||
services: |
||||
root_db: |
||||
image: mcr.microsoft.com/mssql/server:2017-latest |
||||
version: "2.4" |
||||
services: |
||||
nocodb: |
||||
depends_on: |
||||
root_db: |
||||
condition: service_healthy |
||||
environment: |
||||
NC_DB: "mssql://root_db:1433?u=sa&p=Password123.&d=root_db" |
||||
image: "nocodb/nocodb:latest" |
||||
ports: |
||||
- "8080:8080" |
||||
restart: always |
||||
volumes: |
||||
- db_data:/var/opt/mssql |
||||
environment: |
||||
volumes: |
||||
- "nc_data:/usr/app/data" |
||||
root_db: |
||||
environment: |
||||
ACCEPT_EULA: "Y" |
||||
SA_PASSWORD: Password123. |
||||
ACCEPT_EULA: Y |
||||
healthcheck: |
||||
test: /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P "$$SA_PASSWORD" -Q "SELECT 1" || exit 1 |
||||
healthcheck: |
||||
interval: 10s |
||||
timeout: 3s |
||||
retries: 10 |
||||
start_period: 10s |
||||
|
||||
nocodb: |
||||
depends_on: |
||||
root_db: |
||||
condition: service_healthy |
||||
image: nocodb/nocodb:latest |
||||
ports: |
||||
- "8080:8080" |
||||
test: "/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P \"$$SA_PASSWORD\" -Q \"SELECT 1\" || exit 1" |
||||
timeout: 3s |
||||
image: "mcr.microsoft.com/mssql/server:2017-latest" |
||||
restart: always |
||||
volumes: |
||||
- nc_data:/usr/app/data |
||||
environment: |
||||
NC_DB: "mssql://root_db:1433?u=sa&p=Password123.&d=root_db" |
||||
volumes: |
||||
volumes: |
||||
- "db_data:/var/opt/mssql" |
||||
volumes: |
||||
db_data: {} |
||||
nc_data: {} |
||||
|
@ -1,36 +1,39 @@
|
||||
version: '2.1' |
||||
|
||||
services: |
||||
root_db: |
||||
image: mysql:5.7 |
||||
volumes: |
||||
- db_data:/var/lib/mysql |
||||
# below line shows how to change charset and collation |
||||
# uncomment it if necessary |
||||
# command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci |
||||
version: "2.1" |
||||
services: |
||||
nocodb: |
||||
depends_on: |
||||
root_db: |
||||
condition: service_healthy |
||||
environment: |
||||
NC_DB: "mysql2://root_db:3306?u=noco&p=password&d=root_db" |
||||
image: "nocodb/nocodb:latest" |
||||
ports: |
||||
- "8080:8080" |
||||
restart: always |
||||
environment: |
||||
MYSQL_ROOT_PASSWORD: password |
||||
volumes: |
||||
- "nc_data:/usr/app/data" |
||||
root_db: |
||||
environment: |
||||
MYSQL_DATABASE: root_db |
||||
MYSQL_USER: noco |
||||
MYSQL_PASSWORD: password |
||||
healthcheck: |
||||
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ] |
||||
timeout: 20s |
||||
MYSQL_ROOT_PASSWORD: password |
||||
MYSQL_USER: noco |
||||
healthcheck: |
||||
retries: 10 |
||||
|
||||
nocodb: |
||||
depends_on: |
||||
root_db: |
||||
condition: service_healthy |
||||
image: nocodb/nocodb:latest |
||||
ports: |
||||
- "8080:8080" |
||||
test: |
||||
- CMD |
||||
- mysqladmin |
||||
- ping |
||||
- "-h" |
||||
- localhost |
||||
timeout: 20s |
||||
image: "mysql:5.7" |
||||
restart: always |
||||
volumes: |
||||
- nc_data:/usr/app/data |
||||
environment: |
||||
NC_DB: "mysql2://root_db:3306?u=noco&p=password&d=root_db" |
||||
volumes: |
||||
volumes: |
||||
- "db_data:/var/lib/mysql" |
||||
# below line shows how to change charset and collation |
||||
# uncomment it if necessary |
||||
# command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci |
||||
volumes: |
||||
db_data: {} |
||||
nc_data: {} |
||||
|
@ -1,58 +1,58 @@
|
||||
version: '2.1' |
||||
|
||||
services: |
||||
root_db: |
||||
image: mysql:5.7 |
||||
volumes: |
||||
- db_data:/var/lib/mysql |
||||
restart: always |
||||
environment: |
||||
MYSQL_ROOT_PASSWORD: password |
||||
MYSQL_DATABASE: root_db |
||||
MYSQL_USER: noco |
||||
MYSQL_PASSWORD: password |
||||
healthcheck: |
||||
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ] |
||||
timeout: 20s |
||||
retries: 10 |
||||
networks: |
||||
- default |
||||
|
||||
nocodb: |
||||
depends_on: |
||||
root_db: |
||||
condition: service_healthy |
||||
image: nocodb/nocodb:latest |
||||
restart: always |
||||
volumes: |
||||
- nc_data:/usr/app/data |
||||
environment: |
||||
NC_DB: "mysql2://root_db:3306?u=noco&p=password&d=root_db" |
||||
networks: |
||||
- default |
||||
- nginxproxy |
||||
|
||||
nginx-proxy-manager: |
||||
image: jlesage/nginx-proxy-manager |
||||
restart: always |
||||
environment: |
||||
PUID: 1000 |
||||
networks: |
||||
default: ~ |
||||
nginxproxy: ~ |
||||
services: |
||||
nginx-proxy-manager: |
||||
environment: |
||||
PGID: 1000 |
||||
PUID: 1000 |
||||
TZ: Europe/Amsterdam |
||||
ports: |
||||
image: jlesage/nginx-proxy-manager |
||||
networks: |
||||
- nginxproxy |
||||
ports: |
||||
- "8181:8181" |
||||
- "80:8080" |
||||
- "443:4443" |
||||
volumes: |
||||
- nginx-proxy-manager:/config:rw |
||||
networks: |
||||
restart: always |
||||
volumes: |
||||
- "nginx-proxy-manager:/config:rw" |
||||
nocodb: |
||||
depends_on: |
||||
root_db: |
||||
condition: service_healthy |
||||
environment: |
||||
NC_DB: "mysql2://root_db:3306?u=noco&p=password&d=root_db" |
||||
image: "nocodb/nocodb:latest" |
||||
networks: |
||||
- default |
||||
- nginxproxy |
||||
|
||||
volumes: |
||||
nginx-proxy-manager: {} |
||||
restart: always |
||||
volumes: |
||||
- "nc_data:/usr/app/data" |
||||
root_db: |
||||
environment: |
||||
MYSQL_DATABASE: root_db |
||||
MYSQL_PASSWORD: password |
||||
MYSQL_ROOT_PASSWORD: password |
||||
MYSQL_USER: noco |
||||
healthcheck: |
||||
retries: 10 |
||||
test: |
||||
- CMD |
||||
- mysqladmin |
||||
- ping |
||||
- "-h" |
||||
- localhost |
||||
timeout: 20s |
||||
image: "mysql:5.7" |
||||
networks: |
||||
- default |
||||
restart: always |
||||
volumes: |
||||
- "db_data:/var/lib/mysql" |
||||
volumes: |
||||
db_data: {} |
||||
nc_data: {} |
||||
|
||||
networks: |
||||
default: |
||||
nginxproxy: |
||||
nginx-proxy-manager: {} |
||||
|
@ -1,68 +1,66 @@
|
||||
version: '3.9' |
||||
|
||||
networks: |
||||
frontend: |
||||
external: false |
||||
backend: |
||||
external: false |
||||
|
||||
version: "3.9" |
||||
networks: |
||||
backend: |
||||
external: false |
||||
frontend: |
||||
external: false |
||||
# This is an example setup with an Nginx reverse proxy. |
||||
# If you already have an Nginx reverse proxy running, |
||||
# then allow the docker-compose.yml to reference an external network that the reverse proxy container is on |
||||
# (in lieu of the frontend network in this file) and have the NocoDB container connect to it. |
||||
|
||||
services: |
||||
reverse_proxy: |
||||
image: nginx:alpine |
||||
container_name: reverse_proxy |
||||
volumes: |
||||
- ./certbot:/etc/letsencrypt:ro # SSL certs |
||||
- ./nginx:/etc/nginx # Nginx config file |
||||
- path/to/webroot:/usr/share/nginx/html # Mount directory web site files for webroot certificate validation with Certbot |
||||
ports: |
||||
- 80:80 |
||||
- 443:443 |
||||
restart: unless-stopped |
||||
networks: |
||||
- frontend |
||||
|
||||
certbot: |
||||
image: certbot/certbot |
||||
container_name: certbot |
||||
volumes: |
||||
- ./certbot:/etc/letsencrypt |
||||
- path/to/webroot:/var/www/html # For webroot certificate validation |
||||
depends_on: |
||||
- reverse_proxy |
||||
command: certonly --webroot --webroot-path=/var/www/html --email user@example.domain --agree-tos --no-eff-email -d example.domain,www.example.domain,nocodb.example.domain |
||||
|
||||
nocodb_app: |
||||
image: nocodb/nocodb:latest |
||||
container_name: nocodb_app |
||||
restart: unless-stopped |
||||
volumes: |
||||
- ./nocodb/data:/usr/app/data |
||||
networks: |
||||
- backend |
||||
- frontend |
||||
environment: |
||||
NC_DB: mysql2://nocodb_database:3306?u=root&p=${MYSQL_ROOT_PASSWORD}&d=${MYSQL_DATABASE} # While it is not good practice to use the Root user, there were issues with granting privileges to a new user using the Linuxserver MariaDB image. |
||||
NC_PUBLIC_URL: ${NC_PUBLIC_URL} |
||||
NC_AUTH_JWT_SECRET: ${NC_AUTH_JWT_SECRET} |
||||
depends_on: |
||||
- nocodb_database |
||||
|
||||
nocodb_database: |
||||
image: ghcr.io/linuxserver/mariadb:alpine # Using the non-official MariaDB image because it is an alpine distro and has a considerably smaller footprint. |
||||
container_name: nocodb_database |
||||
volumes: |
||||
- ./mariadb/config:/config |
||||
- ./mariadb/data:/var/lib/mysql |
||||
networks: |
||||
- backend |
||||
restart: always |
||||
environment: |
||||
- MYSQL_ROOT_PASSWORD |
||||
- MYSQL_DATABASE |
||||
- MYSQL_USER |
||||
- MYSQL_PASSWORD |
||||
services: |
||||
certbot: |
||||
command: "certonly --webroot --webroot-path=/var/www/html --email user@example.domain --agree-tos --no-eff-email -d example.domain,www.example.domain,nocodb.example.domain" |
||||
container_name: certbot |
||||
depends_on: |
||||
- reverse_proxy |
||||
image: certbot/certbot |
||||
volumes: |
||||
- "./certbot:/etc/letsencrypt" |
||||
- "path/to/webroot:/var/www/html" # For webroot certificate validation |
||||
nocodb_app: |
||||
container_name: nocodb_app |
||||
depends_on: |
||||
- nocodb_database |
||||
environment: |
||||
NC_AUTH_JWT_SECRET: "${NC_AUTH_JWT_SECRET}" |
||||
# while it is not good practice to use the Root user, |
||||
# there were issues with granting privileges to a new user using the Linux server MariaDB image. |
||||
NC_DB: "mysql2://nocodb_database:3306?u=root&p=${MYSQL_ROOT_PASSWORD}&d=${MYSQL_DATABASE}" |
||||
NC_PUBLIC_URL: "${NC_PUBLIC_URL}" |
||||
image: "nocodb/nocodb:latest" |
||||
networks: |
||||
- backend |
||||
- frontend |
||||
restart: unless-stopped |
||||
volumes: |
||||
- "./nocodb/data:/usr/app/data" |
||||
nocodb_database: |
||||
container_name: nocodb_database |
||||
environment: |
||||
- MYSQL_ROOT_PASSWORD |
||||
- MYSQL_DATABASE |
||||
- MYSQL_USER |
||||
- MYSQL_PASSWORD |
||||
# using the non-official MariaDB image |
||||
# because it is an alpine distro and has a considerably smaller footprint |
||||
image: "ghcr.io/linuxserver/mariadb:alpine" |
||||
networks: |
||||
- backend |
||||
restart: always |
||||
volumes: |
||||
- "./mariadb/config:/config" |
||||
- "./mariadb/data:/var/lib/mysql" |
||||
reverse_proxy: |
||||
container_name: reverse_proxy |
||||
image: "nginx:alpine" |
||||
networks: |
||||
- frontend |
||||
ports: |
||||
- "80:80" |
||||
- "443:443" |
||||
restart: unless-stopped |
||||
volumes: |
||||
- "./certbot:/etc/letsencrypt:ro" # SSL certs |
||||
- "./nginx:/etc/nginx" # Nginx config file |
||||
- "path/to/webroot:/usr/share/nginx/html" # Mount directory web site files for webroot certificate validation with Certbot |
@ -1,32 +1,31 @@
|
||||
version: '2.1' |
||||
|
||||
services: |
||||
root_db: |
||||
image: postgres |
||||
services: |
||||
nocodb: |
||||
depends_on: |
||||
root_db: |
||||
condition: service_healthy |
||||
environment: |
||||
NC_DB: "pg://root_db:5432?u=postgres&p=password&d=root_db" |
||||
image: "nocodb/nocodb:latest" |
||||
ports: |
||||
- "8080:8080" |
||||
restart: always |
||||
volumes: |
||||
- db_data:/var/lib/postgresql/data |
||||
environment: |
||||
volumes: |
||||
- "nc_data:/usr/app/data" |
||||
root_db: |
||||
environment: |
||||
POSTGRES_DB: root_db |
||||
POSTGRES_PASSWORD: password |
||||
POSTGRES_USER: postgres |
||||
POSTGRES_DB: root_db |
||||
healthcheck: |
||||
test: pg_isready -U "$$POSTGRES_USER" -d "$$POSTGRES_DB" |
||||
healthcheck: |
||||
interval: 10s |
||||
timeout: 2s |
||||
retries: 10 |
||||
nocodb: |
||||
depends_on: |
||||
root_db: |
||||
condition: service_healthy |
||||
image: nocodb/nocodb:latest |
||||
ports: |
||||
- "8080:8080" |
||||
test: "pg_isready -U \"$$POSTGRES_USER\" -d \"$$POSTGRES_DB\"" |
||||
timeout: 2s |
||||
image: postgres |
||||
restart: always |
||||
volumes: |
||||
- nc_data:/usr/app/data |
||||
environment: |
||||
NC_DB: "pg://root_db:5432?u=postgres&p=password&d=root_db" |
||||
volumes: |
||||
volumes: |
||||
- "db_data:/var/lib/postgresql/data" |
||||
volumes: |
||||
db_data: {} |
||||
nc_data: {} |
||||
|
@ -1,107 +1,102 @@
|
||||
version: "3.7" |
||||
|
||||
networks: |
||||
traefik_proxy: |
||||
name: traefik_proxy |
||||
|
||||
volumes: |
||||
letsencrypt: |
||||
networks: |
||||
traefik_proxy: |
||||
name: traefik_proxy |
||||
services: |
||||
nocodb: |
||||
container_name: nocodb |
||||
depends_on: |
||||
- nocodb-db |
||||
environment: |
||||
- "NC_DB=pg://nocodb-db:5432?u=${DATABASE_USER}&p=${DATABASE_PW}&d=${DATABASE_NAME}" |
||||
- "NC_PUBLIC_URL=https://nocodb.${DOMAINNAME}" |
||||
- NC_DISABLE_TELE=true |
||||
image: "nocodb/nocodb:latest" |
||||
labels: |
||||
- traefik.enable=true |
||||
- traefik.http.services.nocodb.loadbalancer.server.port=8080 |
||||
- "traefik.http.routers.nocodb.rule=Host(`nocodb.${DOMAINNAME}`)" |
||||
- traefik.http.routers.nocodb.entrypoints=https |
||||
- com.centurylinklabs.watchtower.enable=true |
||||
networks: |
||||
- traefik_proxy |
||||
restart: always |
||||
volumes: |
||||
- "nocodb-data:/usr/app/data" |
||||
nocodb-db: |
||||
container_name: nocodb-db |
||||
environment: |
||||
POSTGRES_DB: "${DATABASE_NAME}" |
||||
POSTGRES_PASSWORD: "${DATABASE_PW}" |
||||
POSTGRES_USER: "${DATABASE_USER}" |
||||
healthcheck: |
||||
interval: 10s |
||||
retries: 10 |
||||
test: "pg_isready -U ${DATABASE_USER} -d ${DATABASE_NAME}" |
||||
timeout: 2s |
||||
image: "postgres:12.1-alpine" |
||||
networks: |
||||
- traefik_proxy |
||||
restart: always |
||||
volumes: |
||||
- "nocodb-db:/var/lib/postgresql/data" |
||||
traefik: |
||||
command: |
||||
- "--providers.docker=true" |
||||
- "--ping=true" |
||||
- "--ping.entryPoint=ping" |
||||
- "--providers.docker.exposedbydefault=false" |
||||
- "--providers.docker.network=traefik_proxy" |
||||
- "--entryPoints.ping.address=:8081" |
||||
- "--entrypoints.http.address=:80" |
||||
- "--entrypoints.https.address=:443" |
||||
- "--entrypoints.https.http.tls.certresolver=letsencrypt" |
||||
- "--entrypoints.https.http.tls.domains[0].main=${DOMAINNAME}" |
||||
- "--entrypoints.https.http.tls.domains[0].sans=*.${DOMAINNAME}" |
||||
- "--entrypoints.http.http.redirections.entryPoint.to=https" |
||||
- "--entrypoints.http.http.redirections.entryPoint.scheme=https" |
||||
- "--certificatesresolvers.letsencrypt.acme.dnsChallenge.delayBeforeCheck=15" |
||||
- "--certificatesresolvers.letsencrypt.acme.dnschallenge.provider=cloudflare" |
||||
- "--certificatesresolvers.letsencrypt.acme.email=info@${DOMAINNAME}" |
||||
- "--certificatesresolvers.letsencrypt.acme.storage=/letsencrypt/acme.json" |
||||
- "--certificatesResolvers.letsencrypt.acme.dnsChallenge.resolvers=1.1.1.1:53,1.0.0.1:53" |
||||
container_name: traefik |
||||
environment: |
||||
- "CF_DNS_API_TOKEN=${CLOUDFLARE_TOKEN}" |
||||
healthcheck: |
||||
retries: 3 |
||||
test: |
||||
- CMD |
||||
- wget |
||||
- "-c" |
||||
- "http://localhost:8081/ping" |
||||
timeout: 3s |
||||
image: "traefik:v2.2" |
||||
networks: |
||||
- default |
||||
- traefik_proxy |
||||
ports: |
||||
- "80:80" |
||||
- "443:443" |
||||
restart: always |
||||
volumes: |
||||
- "letsencrypt:/letsencrypt" |
||||
- "/var/run/docker.sock:/var/run/docker.sock:ro" |
||||
watchtower: |
||||
command: "--schedule \"0 5 * * *\" --cleanup --label-enable" |
||||
container_name: watchtower |
||||
image: containrrr/watchtower |
||||
labels: |
||||
- com.centurylinklabs.watchtower.enable=true |
||||
networks: |
||||
- traefik_proxy |
||||
restart: always |
||||
volumes: |
||||
- "/var/run/docker.sock:/var/run/docker.sock:ro" |
||||
volumes: |
||||
letsencrypt: |
||||
name: traefik-letsencrypt |
||||
nocodb-db: |
||||
name: nocodb-db |
||||
nocodb-data: |
||||
nocodb-data: |
||||
name: nocodb-data |
||||
|
||||
services: |
||||
|
||||
traefik: |
||||
image: traefik:v2.2 |
||||
container_name: traefik |
||||
restart: always |
||||
command: |
||||
#- "--log.level=DEBUG" |
||||
- "--providers.docker=true" |
||||
- "--ping=true" |
||||
- "--ping.entryPoint=ping" |
||||
- "--providers.docker.exposedbydefault=false" |
||||
- "--providers.docker.network=traefik_proxy" |
||||
- "--entryPoints.ping.address=:8081" |
||||
- "--entrypoints.http.address=:80" |
||||
- "--entrypoints.https.address=:443" |
||||
- "--entrypoints.https.http.tls.certresolver=letsencrypt" |
||||
- "--entrypoints.https.http.tls.domains[0].main=${DOMAINNAME}" |
||||
- "--entrypoints.https.http.tls.domains[0].sans=*.${DOMAINNAME}" |
||||
- "--entrypoints.http.http.redirections.entryPoint.to=https" |
||||
- "--entrypoints.http.http.redirections.entryPoint.scheme=https" |
||||
- "--certificatesresolvers.letsencrypt.acme.dnsChallenge.delayBeforeCheck=15" |
||||
- "--certificatesresolvers.letsencrypt.acme.dnschallenge.provider=cloudflare" |
||||
- "--certificatesresolvers.letsencrypt.acme.email=info@${DOMAINNAME}" |
||||
- "--certificatesresolvers.letsencrypt.acme.storage=/letsencrypt/acme.json" |
||||
- "--certificatesResolvers.letsencrypt.acme.dnsChallenge.resolvers=1.1.1.1:53,1.0.0.1:53" |
||||
environment: |
||||
- CF_DNS_API_TOKEN=${CLOUDFLARE_TOKEN} |
||||
healthcheck: |
||||
test: ["CMD", "wget", "-c", "http://localhost:8081/ping"] |
||||
timeout: 3s |
||||
retries: 3 |
||||
networks: |
||||
- default |
||||
- traefik_proxy |
||||
ports: |
||||
- "80:80" |
||||
- "443:443" |
||||
volumes: |
||||
- "letsencrypt:/letsencrypt" |
||||
- /var/run/docker.sock:/var/run/docker.sock:ro |
||||
|
||||
watchtower: |
||||
image: containrrr/watchtower |
||||
container_name: watchtower |
||||
restart: always |
||||
networks: |
||||
- traefik_proxy |
||||
command: --schedule "0 5 * * *" --cleanup --label-enable |
||||
|
||||
volumes: |
||||
- /var/run/docker.sock:/var/run/docker.sock:ro |
||||
labels: |
||||
- "com.centurylinklabs.watchtower.enable=true" |
||||
|
||||
nocodb: |
||||
container_name: nocodb |
||||
image: nocodb/nocodb:latest |
||||
restart: always |
||||
volumes: |
||||
- nocodb-data:/usr/app/data |
||||
networks: |
||||
- traefik_proxy |
||||
environment: |
||||
- NC_DB=pg://nocodb-db:5432?u=${DATABASE_USER}&p=${DATABASE_PW}&d=${DATABASE_NAME} |
||||
- NC_PUBLIC_URL=https://nocodb.${DOMAINNAME} |
||||
- NC_DISABLE_TELE=true |
||||
labels: |
||||
- "traefik.enable=true" |
||||
- "traefik.http.services.nocodb.loadbalancer.server.port=8080" |
||||
- "traefik.http.routers.nocodb.rule=Host(`nocodb.${DOMAINNAME}`)" |
||||
- "traefik.http.routers.nocodb.entrypoints=https" |
||||
- "com.centurylinklabs.watchtower.enable=true" |
||||
depends_on: |
||||
- nocodb-db |
||||
|
||||
nocodb-db: |
||||
image: postgres:12.1-alpine |
||||
container_name: nocodb-db |
||||
restart: always |
||||
networks: |
||||
- traefik_proxy |
||||
environment: |
||||
POSTGRES_USER: ${DATABASE_USER} |
||||
POSTGRES_PASSWORD: ${DATABASE_PW} |
||||
POSTGRES_DB: ${DATABASE_NAME} |
||||
volumes: |
||||
- nocodb-db:/var/lib/postgresql/data |
||||
healthcheck: |
||||
test: pg_isready -U ${DATABASE_USER} -d ${DATABASE_NAME} |
||||
interval: 10s |
||||
timeout: 2s |
||||
retries: 10 |
||||
nocodb-db: |
||||
name: nocodb-db |
||||
|
Loading…
Reference in new issue