2022-09-29 20:28:41 +00:00
|
|
|
version: "3.7"
|
2022-03-29 17:41:49 +00:00
|
|
|
|
|
|
|
services:
|
2022-04-28 18:18:00 +00:00
|
|
|
reverse-proxy:
|
|
|
|
container_name: reverse-proxy
|
2022-08-25 07:30:44 +00:00
|
|
|
image: traefik:v2.8
|
2022-04-28 18:18:00 +00:00
|
|
|
restart: always
|
|
|
|
ports:
|
2022-06-13 18:51:24 +00:00
|
|
|
- ${NGINX_PORT-80}:80
|
2022-09-01 11:33:45 +00:00
|
|
|
- ${NGINX_PORT_SSL-443}:443
|
|
|
|
command: --providers.docker
|
2022-04-28 18:18:00 +00:00
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
|
|
- ${PWD}/traefik:/root/.config
|
2022-09-01 19:30:40 +00:00
|
|
|
- ${PWD}/traefik/shared:/shared
|
2022-04-28 18:18:00 +00:00
|
|
|
networks:
|
2022-05-17 18:22:03 +00:00
|
|
|
- tipi_main_network
|
2022-05-16 21:30:08 +00:00
|
|
|
|
2022-07-06 09:15:35 +00:00
|
|
|
tipi-db:
|
|
|
|
container_name: tipi-db
|
|
|
|
image: postgres:latest
|
|
|
|
restart: on-failure
|
|
|
|
stop_grace_period: 1m
|
|
|
|
volumes:
|
2022-07-18 19:37:06 +00:00
|
|
|
- ${PWD}/data/postgres:/var/lib/postgresql/data
|
2022-07-06 09:15:35 +00:00
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
2022-07-06 21:03:45 +00:00
|
|
|
POSTGRES_USER: tipi
|
|
|
|
POSTGRES_DB: tipi
|
2022-07-06 09:15:35 +00:00
|
|
|
healthcheck:
|
2022-08-11 19:22:02 +00:00
|
|
|
test: ["CMD-SHELL", "pg_isready -d tipi -U tipi"]
|
2022-07-06 09:15:35 +00:00
|
|
|
interval: 5s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 120
|
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
|
|
|
|
2022-05-16 21:30:08 +00:00
|
|
|
api:
|
2022-06-03 20:42:23 +00:00
|
|
|
image: meienberger/runtipi:${TIPI_VERSION}
|
2022-07-18 19:41:10 +00:00
|
|
|
command: /bin/sh -c "cd /api && npm run start"
|
2022-06-01 20:52:17 +00:00
|
|
|
restart: unless-stopped
|
2022-05-16 21:30:08 +00:00
|
|
|
container_name: api
|
2022-07-06 09:15:35 +00:00
|
|
|
depends_on:
|
|
|
|
tipi-db:
|
|
|
|
condition: service_healthy
|
2022-05-16 21:30:08 +00:00
|
|
|
volumes:
|
|
|
|
## Docker sock
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
2022-09-21 07:06:38 +00:00
|
|
|
- ${PWD}:/runtipi
|
2022-09-27 18:25:56 +00:00
|
|
|
- ${PWD}/logs:/app/logs
|
|
|
|
- ${STORAGE_PATH}:/app/storage
|
2022-05-16 21:34:33 +00:00
|
|
|
environment:
|
2022-07-06 09:15:35 +00:00
|
|
|
INTERNAL_IP: ${INTERNAL_IP}
|
|
|
|
TIPI_VERSION: ${TIPI_VERSION}
|
|
|
|
JWT_SECRET: ${JWT_SECRET}
|
|
|
|
NGINX_PORT: ${NGINX_PORT}
|
|
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
|
|
POSTGRES_USERNAME: tipi
|
|
|
|
POSTGRES_DBNAME: tipi
|
|
|
|
POSTGRES_HOST: tipi-db
|
2022-07-26 20:46:45 +00:00
|
|
|
NODE_ENV: production
|
2022-08-04 19:17:21 +00:00
|
|
|
APPS_REPO_ID: ${APPS_REPO_ID}
|
2022-08-11 19:22:02 +00:00
|
|
|
APPS_REPO_URL: ${APPS_REPO_URL}
|
2022-09-04 12:31:57 +00:00
|
|
|
DOMAIN: ${DOMAIN}
|
2022-05-16 21:30:08 +00:00
|
|
|
networks:
|
2022-05-17 18:22:03 +00:00
|
|
|
- tipi_main_network
|
2022-09-04 12:31:57 +00:00
|
|
|
labels:
|
|
|
|
traefik.enable: true
|
|
|
|
# Web
|
|
|
|
traefik.http.routers.api.rule: PathPrefix(`/api`)
|
|
|
|
traefik.http.routers.api.service: api
|
|
|
|
traefik.http.routers.api.entrypoints: web
|
|
|
|
traefik.http.routers.api.middlewares: api-stripprefix
|
|
|
|
traefik.http.services.api.loadbalancer.server.port: 3001
|
|
|
|
# Websecure
|
|
|
|
traefik.http.routers.api-secure.rule: (Host(`${DOMAIN}`) && PathPrefix(`/api`))
|
|
|
|
traefik.http.routers.api-secure.entrypoints: websecure
|
|
|
|
traefik.http.routers.api-secure.service: api-secure
|
|
|
|
traefik.http.routers.api-secure.tls.certresolver: myresolver
|
|
|
|
traefik.http.routers.api-secure.middlewares: api-stripprefix
|
|
|
|
traefik.http.services.api-secure.loadbalancer.server.port: 3001
|
|
|
|
# Middlewares
|
|
|
|
traefik.http.middlewares.api-stripprefix.stripprefix.prefixes: /api
|
2022-04-07 20:13:36 +00:00
|
|
|
|
2022-04-07 08:34:18 +00:00
|
|
|
dashboard:
|
2022-06-03 20:42:23 +00:00
|
|
|
image: meienberger/runtipi:${TIPI_VERSION}
|
2022-07-18 17:47:56 +00:00
|
|
|
command: /bin/sh -c "cd /dashboard && npm run start"
|
2022-06-01 20:52:17 +00:00
|
|
|
restart: unless-stopped
|
2022-04-07 08:34:18 +00:00
|
|
|
container_name: dashboard
|
|
|
|
networks:
|
2022-05-17 18:22:03 +00:00
|
|
|
- tipi_main_network
|
2022-09-24 22:06:13 +00:00
|
|
|
depends_on:
|
|
|
|
api:
|
|
|
|
condition: service_started
|
2022-05-17 10:51:59 +00:00
|
|
|
environment:
|
2022-07-26 20:46:45 +00:00
|
|
|
INTERNAL_IP: ${INTERNAL_IP}
|
|
|
|
NODE_ENV: production
|
2022-09-04 12:31:57 +00:00
|
|
|
DOMAIN: ${DOMAIN}
|
2022-09-11 10:58:11 +00:00
|
|
|
NGINX_PORT: ${NGINX_PORT-80}
|
2022-04-28 18:18:00 +00:00
|
|
|
labels:
|
|
|
|
traefik.enable: true
|
2022-09-04 12:31:57 +00:00
|
|
|
traefik.http.routers.dashboard-redirect.rule: PathPrefix("/")
|
|
|
|
traefik.http.routers.dashboard-redirect.entrypoints: web
|
|
|
|
traefik.http.routers.dashboard-redirect.middlewares: redirect-middleware
|
|
|
|
traefik.http.routers.dashboard-redirect.service: dashboard
|
|
|
|
traefik.http.services.dashboard-redirect.loadbalancer.server.port: 3000
|
|
|
|
|
|
|
|
traefik.http.routers.dashboard-redirect-secure.rule: Host(`${DOMAIN}`) && PathPrefix(`/`)
|
|
|
|
traefik.http.routers.dashboard-redirect-secure.entrypoints: websecure
|
|
|
|
traefik.http.routers.dashboard-redirect-secure.middlewares: redirect-middleware
|
|
|
|
traefik.http.routers.dashboard-redirect-secure.service: dashboard
|
|
|
|
traefik.http.routers.dashboard-redirect-secure.tls.certresolver: myresolver
|
|
|
|
traefik.http.services.dashboard-redirect-secure.loadbalancer.server.port: 3000
|
|
|
|
|
|
|
|
# Web
|
|
|
|
traefik.http.routers.dashboard.rule: PathPrefix("/dashboard")
|
2022-04-28 18:18:00 +00:00
|
|
|
traefik.http.routers.dashboard.service: dashboard
|
2022-09-04 12:31:57 +00:00
|
|
|
traefik.http.routers.dashboard.entrypoints: web
|
2022-04-28 18:18:00 +00:00
|
|
|
traefik.http.services.dashboard.loadbalancer.server.port: 3000
|
2022-09-04 12:31:57 +00:00
|
|
|
# Websecure
|
|
|
|
traefik.http.routers.dashboard-secure.rule: Host(`${DOMAIN}`) && PathPrefix(`/dashboard`)
|
|
|
|
traefik.http.routers.dashboard-secure.service: dashboard-secure
|
|
|
|
traefik.http.routers.dashboard-secure.entrypoints: websecure
|
|
|
|
traefik.http.routers.dashboard-secure.tls.certresolver: myresolver
|
|
|
|
traefik.http.services.dashboard-secure.loadbalancer.server.port: 3000
|
|
|
|
# Middlewares
|
|
|
|
traefik.http.middlewares.redirect-middleware.redirectregex.regex: .*
|
|
|
|
traefik.http.middlewares.redirect-middleware.redirectregex.replacement: /dashboard
|
2022-03-29 18:53:48 +00:00
|
|
|
|
2022-04-07 08:34:18 +00:00
|
|
|
networks:
|
2022-04-21 19:41:56 +00:00
|
|
|
tipi_main_network:
|
|
|
|
driver: bridge
|
2022-04-25 21:36:41 +00:00
|
|
|
driver_opts:
|
|
|
|
com.docker.network.bridge.enable_ip_masquerade: "true"
|
|
|
|
com.docker.network.bridge.enable_icc: "true"
|
2022-04-21 19:41:56 +00:00
|
|
|
ipam:
|
|
|
|
driver: default
|
|
|
|
config:
|
|
|
|
- subnet: 10.21.21.0/24
|