2023-04-25 18:16:12 +00:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
|
|
|
reverse-proxy:
|
|
|
|
container_name: reverse-proxy
|
|
|
|
image: traefik:v2.8
|
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
|
|
|
- ${NGINX_PORT-80}:80
|
2023-04-25 18:16:26 +00:00
|
|
|
- ${NGINX_PORT_SSL-443}:443
|
2023-04-25 18:16:12 +00:00
|
|
|
command: --providers.docker
|
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
|
|
- ${PWD}/traefik:/root/.config
|
|
|
|
- ${PWD}/traefik/shared:/shared
|
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
|
|
|
|
|
|
|
tipi-db:
|
|
|
|
container_name: tipi-db
|
|
|
|
image: postgres:14
|
|
|
|
restart: unless-stopped
|
|
|
|
stop_grace_period: 1m
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
2023-04-25 18:16:26 +00:00
|
|
|
POSTGRES_USER: tipi
|
|
|
|
POSTGRES_DB: tipi
|
2023-04-25 18:16:12 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ['CMD-SHELL', 'pg_isready -d tipi -U tipi']
|
|
|
|
interval: 5s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 120
|
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
|
|
|
|
|
|
|
tipi-redis:
|
|
|
|
container_name: tipi-redis
|
|
|
|
image: redis:alpine
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- ./data/redis:/data
|
|
|
|
healthcheck:
|
|
|
|
test: ['CMD', 'redis-cli', 'ping']
|
|
|
|
interval: 5s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 120
|
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
|
|
|
|
|
|
|
dashboard:
|
2023-06-01 21:25:12 +00:00
|
|
|
image: meienberger/runtipi:${DOCKER_TAG}
|
2023-04-25 18:16:12 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
container_name: dashboard
|
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
|
|
|
depends_on:
|
|
|
|
tipi-db:
|
|
|
|
condition: service_healthy
|
|
|
|
tipi-redis:
|
|
|
|
condition: service_healthy
|
|
|
|
environment:
|
|
|
|
NODE_ENV: production
|
|
|
|
INTERNAL_IP: ${INTERNAL_IP}
|
|
|
|
TIPI_VERSION: ${TIPI_VERSION}
|
|
|
|
JWT_SECRET: ${JWT_SECRET}
|
|
|
|
NGINX_PORT: ${NGINX_PORT}
|
|
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
|
|
POSTGRES_USERNAME: ${POSTGRES_USERNAME}
|
|
|
|
POSTGRES_DBNAME: ${POSTGRES_DBNAME}
|
|
|
|
POSTGRES_HOST: ${POSTGRES_HOST}
|
|
|
|
APPS_REPO_ID: ${APPS_REPO_ID}
|
|
|
|
APPS_REPO_URL: ${APPS_REPO_URL}
|
|
|
|
DOMAIN: ${DOMAIN}
|
|
|
|
ARCHITECTURE: ${ARCHITECTURE}
|
|
|
|
REDIS_HOST: ${REDIS_HOST}
|
|
|
|
DEMO_MODE: ${DEMO_MODE}
|
2023-06-06 21:26:46 +00:00
|
|
|
LOCAL_DOMAIN: ${LOCAL_DOMAIN}
|
2023-04-25 18:16:12 +00:00
|
|
|
volumes:
|
|
|
|
- ${PWD}/state:/runtipi/state
|
|
|
|
- ${PWD}/repos:/runtipi/repos:ro
|
|
|
|
- ${PWD}/apps:/runtipi/apps
|
|
|
|
- ${PWD}/logs:/app/logs
|
2023-06-06 21:26:46 +00:00
|
|
|
- ${PWD}/traefik:/runtipi/traefik
|
2023-04-25 18:16:12 +00:00
|
|
|
- ${PWD}:/app/storage
|
|
|
|
labels:
|
2023-06-06 19:47:51 +00:00
|
|
|
# Main
|
2023-04-25 18:16:12 +00:00
|
|
|
traefik.enable: true
|
2023-06-06 19:47:51 +00:00
|
|
|
traefik.http.middlewares.redirect-to-https.redirectscheme.scheme: https
|
|
|
|
traefik.http.services.dashboard.loadbalancer.server.port: 3000
|
|
|
|
# Local ip
|
2023-04-25 18:16:12 +00:00
|
|
|
traefik.http.routers.dashboard.rule: PathPrefix("/")
|
|
|
|
traefik.http.routers.dashboard.service: dashboard
|
|
|
|
traefik.http.routers.dashboard.entrypoints: web
|
2023-06-06 19:47:51 +00:00
|
|
|
# Websecure
|
|
|
|
traefik.http.routers.dashboard-insecure.rule: Host(`${DOMAIN}`) && PathPrefix(`/`)
|
|
|
|
traefik.http.routers.dashboard-insecure.service: dashboard
|
|
|
|
traefik.http.routers.dashboard-insecure.entrypoints: web
|
|
|
|
traefik.http.routers.dashboard-insecure.middlewares: redirect-to-https
|
|
|
|
traefik.http.routers.dashboard-secure.rule: Host(`${DOMAIN}`) && PathPrefix(`/`)
|
|
|
|
traefik.http.routers.dashboard-secure.service: dashboard
|
|
|
|
traefik.http.routers.dashboard-secure.entrypoints: websecure
|
|
|
|
traefik.http.routers.dashboard-secure.tls.certresolver: myresolver
|
2023-06-06 19:19:56 +00:00
|
|
|
# Local domain
|
|
|
|
traefik.http.routers.dashboard-local-insecure.rule: Host(`${LOCAL_DOMAIN}`)
|
|
|
|
traefik.http.routers.dashboard-local-insecure.entrypoints: web
|
2023-06-06 19:47:51 +00:00
|
|
|
traefik.http.routers.dashboard-local-insecure.service: dashboard
|
2023-06-06 19:19:56 +00:00
|
|
|
traefik.http.routers.dashboard-local-insecure.middlewares: redirect-to-https
|
|
|
|
traefik.http.routers.dashboard-local.rule: Host(`${LOCAL_DOMAIN}`)
|
|
|
|
traefik.http.routers.dashboard-local.entrypoints: websecure
|
|
|
|
traefik.http.routers.dashboard-local.tls: true
|
2023-06-06 19:47:51 +00:00
|
|
|
traefik.http.routers.dashboard-local.service: dashboard
|
2023-04-25 18:16:12 +00:00
|
|
|
|
|
|
|
networks:
|
|
|
|
tipi_main_network:
|
|
|
|
driver: bridge
|
|
|
|
ipam:
|
|
|
|
driver: default
|
|
|
|
config:
|
|
|
|
- subnet: 10.21.21.0/24
|