|
|
|
@ -9,9 +9,11 @@ volumes:
|
|
|
|
|
name: traefik-letsencrypt |
|
|
|
|
nocodb-db: |
|
|
|
|
name: nocodb-db |
|
|
|
|
|
|
|
|
|
nocodb-data: |
|
|
|
|
name: nocodb-data |
|
|
|
|
|
|
|
|
|
services: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
traefik: |
|
|
|
|
image: traefik:v2.2 |
|
|
|
|
container_name: traefik |
|
|
|
@ -19,18 +21,18 @@ services:
|
|
|
|
|
command: |
|
|
|
|
#- "--log.level=DEBUG" |
|
|
|
|
- "--providers.docker=true" |
|
|
|
|
- "--ping=true" |
|
|
|
|
- "--ping=true" |
|
|
|
|
- "--ping.entryPoint=ping" |
|
|
|
|
- "--providers.docker.exposedbydefault=false" |
|
|
|
|
- "--providers.docker.network=traefik_proxy" |
|
|
|
|
- "--providers.docker.network=traefik_proxy" |
|
|
|
|
- "--entryPoints.ping.address=:8081" |
|
|
|
|
- "--entrypoints.http.address=:80" |
|
|
|
|
- "--entrypoints.https.address=:443" |
|
|
|
|
- "--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.https.http.tls.domains[0].sans=*.${DOMAINNAME}" |
|
|
|
|
- "--entrypoints.http.http.redirections.entryPoint.to=https" |
|
|
|
|
- "--entrypoints.http.http.redirections.entryPoint.scheme=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}" |
|
|
|
@ -46,7 +48,7 @@ services:
|
|
|
|
|
- default |
|
|
|
|
- traefik_proxy |
|
|
|
|
ports: |
|
|
|
|
- "80:80" |
|
|
|
|
- "80:80" |
|
|
|
|
- "443:443" |
|
|
|
|
volumes: |
|
|
|
|
- "letsencrypt:/letsencrypt" |
|
|
|
@ -57,33 +59,35 @@ services:
|
|
|
|
|
container_name: watchtower |
|
|
|
|
restart: always |
|
|
|
|
networks: |
|
|
|
|
- traefik_proxy |
|
|
|
|
- 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_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" |
|
|
|
|
- "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 |
|
|
|
|