2023-03-05 22:44:22 +00:00
|
|
|
version: '3.7'
|
2022-05-17 17:29:12 +00:00
|
|
|
|
|
|
|
services:
|
2023-08-24 16:40:38 +00:00
|
|
|
tipi-reverse-proxy:
|
|
|
|
container_name: tipi-reverse-proxy
|
2023-06-06 19:19:56 +00:00
|
|
|
image: traefik:v2.8
|
|
|
|
restart: on-failure
|
|
|
|
ports:
|
|
|
|
- 80:80
|
|
|
|
- 443:443
|
|
|
|
- 8080:8080
|
|
|
|
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
|
|
|
|
|
2022-06-20 19:04:42 +00:00
|
|
|
tipi-db:
|
|
|
|
container_name: tipi-db
|
2022-10-15 23:36:20 +00:00
|
|
|
image: postgres:14
|
2022-11-04 07:49:40 +00:00
|
|
|
restart: unless-stopped
|
2022-06-16 21:29:03 +00:00
|
|
|
stop_grace_period: 1m
|
|
|
|
volumes:
|
2022-12-15 14:18:25 +00:00
|
|
|
- pgdata:/var/lib/postgresql/data
|
2022-06-20 19:04:42 +00:00
|
|
|
ports:
|
|
|
|
- 5432:5432
|
2022-06-16 21:29:03 +00:00
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
2022-07-06 21:03:45 +00:00
|
|
|
POSTGRES_USER: tipi
|
|
|
|
POSTGRES_DB: tipi
|
2022-06-28 20:01:06 +00:00
|
|
|
healthcheck:
|
2023-03-05 22:44:22 +00:00
|
|
|
test: ['CMD-SHELL', 'pg_isready -d tipi -U tipi']
|
2022-06-28 20:01:06 +00:00
|
|
|
interval: 5s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 120
|
2022-06-16 21:29:03 +00:00
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
|
|
|
|
2022-10-20 21:10:50 +00:00
|
|
|
tipi-redis:
|
|
|
|
container_name: tipi-redis
|
2023-09-06 06:41:59 +00:00
|
|
|
image: redis:7.2.0
|
2022-10-20 21:10:50 +00:00
|
|
|
restart: unless-stopped
|
2023-08-24 16:40:38 +00:00
|
|
|
command: redis-server --requirepass ${REDIS_PASSWORD}
|
2022-11-08 18:25:08 +00:00
|
|
|
ports:
|
|
|
|
- 6379:6379
|
2022-10-20 21:10:50 +00:00
|
|
|
volumes:
|
2023-10-11 06:36:43 +00:00
|
|
|
- redisdata:/data
|
2023-04-12 21:46:12 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ['CMD', 'redis-cli', 'ping']
|
|
|
|
interval: 5s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 120
|
2022-10-20 21:10:50 +00:00
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
|
|
|
|
2023-11-15 11:14:34 +00:00
|
|
|
tipi-worker:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: ./packages/worker/Dockerfile.dev
|
|
|
|
container_name: tipi-worker
|
|
|
|
healthcheck:
|
|
|
|
test: ['CMD', 'curl', '-f', 'http://localhost:3000/healthcheck']
|
|
|
|
interval: 5s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 120
|
|
|
|
start_period: 5s
|
|
|
|
depends_on:
|
|
|
|
tipi-db:
|
|
|
|
condition: service_healthy
|
|
|
|
tipi-redis:
|
|
|
|
condition: service_healthy
|
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
environment:
|
|
|
|
NODE_ENV: development
|
|
|
|
volumes:
|
|
|
|
# Dev mode
|
|
|
|
- ${PWD}/packages/worker/src:/app/packages/worker/src
|
|
|
|
# Production mode
|
|
|
|
- /proc:/host/proc:ro
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
- ${PWD}/.env:/app/.env
|
|
|
|
- ${PWD}/state:/app/state
|
|
|
|
- ${PWD}/repos:/app/repos
|
|
|
|
- ${PWD}/apps:/app/apps
|
|
|
|
- ${STORAGE_PATH:-$PWD}/app-data:/storage/app-data
|
|
|
|
- ${PWD}/logs:/app/logs
|
|
|
|
- ${PWD}/traefik:/app/traefik
|
|
|
|
- ${PWD}/user-config:/app/user-config
|
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
|
|
|
|
2023-08-24 16:40:38 +00:00
|
|
|
tipi-dashboard:
|
2022-05-17 17:29:12 +00:00
|
|
|
build:
|
2022-06-03 20:42:23 +00:00
|
|
|
context: .
|
2022-05-17 17:29:12 +00:00
|
|
|
dockerfile: Dockerfile.dev
|
2023-08-24 16:40:38 +00:00
|
|
|
container_name: tipi-dashboard
|
2022-09-24 22:06:13 +00:00
|
|
|
depends_on:
|
2022-12-26 21:05:04 +00:00
|
|
|
tipi-db:
|
|
|
|
condition: service_healthy
|
2023-04-12 21:46:12 +00:00
|
|
|
tipi-redis:
|
|
|
|
condition: service_healthy
|
2023-11-15 11:14:34 +00:00
|
|
|
tipi-worker:
|
|
|
|
condition: service_healthy
|
2023-08-15 20:49:50 +00:00
|
|
|
env_file:
|
|
|
|
- .env
|
2022-12-26 03:31:44 +00:00
|
|
|
environment:
|
2023-01-23 18:54:56 +00:00
|
|
|
NODE_ENV: development
|
2022-05-17 17:29:12 +00:00
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
2023-03-28 19:27:05 +00:00
|
|
|
ports:
|
|
|
|
- 3000:3000
|
2022-05-17 17:29:12 +00:00
|
|
|
volumes:
|
2022-06-22 19:28:48 +00:00
|
|
|
# - /dashboard/node_modules
|
|
|
|
# - /dashboard/.next
|
2023-03-05 22:53:56 +00:00
|
|
|
- ${PWD}/.env:/runtipi/.env
|
2023-03-05 22:44:22 +00:00
|
|
|
- ${PWD}/src:/app/src
|
2023-08-15 20:49:50 +00:00
|
|
|
- ${PWD}/packages:/app/packages
|
2022-12-26 03:31:44 +00:00
|
|
|
- ${PWD}/state:/runtipi/state
|
2023-02-02 06:40:49 +00:00
|
|
|
- ${PWD}/repos:/runtipi/repos:ro
|
|
|
|
- ${PWD}/apps:/runtipi/apps
|
2022-12-26 03:31:44 +00:00
|
|
|
- ${PWD}/logs:/app/logs
|
2023-06-06 21:26:46 +00:00
|
|
|
- ${PWD}/traefik:/runtipi/traefik
|
2023-11-15 11:14:34 +00:00
|
|
|
- ${STORAGE_PATH:-$PWD}:/app/storage
|
2023-06-06 19:19:56 +00:00
|
|
|
labels:
|
|
|
|
traefik.enable: true
|
2023-06-06 19:47:51 +00:00
|
|
|
traefik.http.services.dashboard.loadbalancer.server.port: 3000
|
|
|
|
traefik.http.middlewares.redirect-to-https.redirectscheme.scheme: https
|
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
|
|
|
|
# secure
|
|
|
|
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
|
2022-05-17 17:29:12 +00:00
|
|
|
|
|
|
|
networks:
|
|
|
|
tipi_main_network:
|
|
|
|
driver: bridge
|
2023-09-10 12:02:21 +00:00
|
|
|
name: runtipi_tipi_main_network
|
|
|
|
|
2022-12-15 14:18:25 +00:00
|
|
|
volumes:
|
2022-12-26 03:31:44 +00:00
|
|
|
pgdata:
|
2023-10-11 06:36:43 +00:00
|
|
|
redisdata:
|