runtipi/docker-compose.rc.yml

92 lines
2.4 KiB
YAML
Raw Normal View History

2022-05-18 19:50:53 +03:00
version: "3.7"
services:
reverse-proxy:
container_name: reverse-proxy
image: traefik:v2.6
restart: always
ports:
- ${NGINX_PORT-80}:80
- ${PROXY_PORT-8080}:8080
2022-05-18 19:50:53 +03:00
command: --api.insecure=true --providers.docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ${PWD}/traefik:/root/.config
networks:
- tipi_main_network
2022-07-18 20:56:20 +03:00
tipi-db:
container_name: tipi-db
image: postgres:latest
restart: on-failure
stop_grace_period: 1m
volumes:
- ./data/postgres:/var/lib/postgresql/data
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_USER: tipi
POSTGRES_DB: tipi
healthcheck:
test: [ "CMD-SHELL", "pg_isready -d tipi -U tipi" ]
interval: 5s
timeout: 10s
retries: 120
networks:
- tipi_main_network
2022-05-18 19:50:53 +03:00
api:
2022-06-13 06:54:32 +03:00
image: meienberger/runtipi:rc-${TIPI_VERSION}
command: /bin/sh -c "cd /api && npm run start"
2022-05-18 19:50:53 +03:00
container_name: api
ports:
- 3001:3001
2022-07-18 20:56:20 +03:00
depends_on:
tipi-db:
condition: service_healthy
2022-05-18 19:50:53 +03:00
volumes:
## Docker sock
- /var/run/docker.sock:/var/run/docker.sock:ro
- ${PWD}:/tipi
environment:
2022-07-18 20:56:20 +03:00
INTERNAL_IP: ${INTERNAL_IP}
TIPI_VERSION: ${TIPI_VERSION}
JWT_SECRET: ${JWT_SECRET}
ROOT_FOLDER_HOST: ${ROOT_FOLDER_HOST}
NGINX_PORT: ${NGINX_PORT}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_USERNAME: tipi
POSTGRES_DBNAME: tipi
POSTGRES_HOST: tipi-db
2022-05-18 19:50:53 +03:00
networks:
- tipi_main_network
dashboard:
2022-06-13 06:54:32 +03:00
image: meienberger/runtipi:rc-${TIPI_VERSION}
2022-07-18 20:56:20 +03:00
command: /bin/sh -c "cd /dashboard && npm run start"
2022-05-18 19:50:53 +03:00
container_name: dashboard
ports:
- 3000:3000
networks:
- tipi_main_network
environment:
- INTERNAL_IP=${INTERNAL_IP}
labels:
traefik.enable: true
traefik.http.routers.dashboard.rule: PathPrefix("/") # Host(`tipi.local`) &&
traefik.http.routers.dashboard.entrypoints: webinsecure
traefik.http.routers.dashboard.service: dashboard
traefik.http.services.dashboard.loadbalancer.server.port: 3000
networks:
tipi_main_network:
driver: bridge
driver_opts:
com.docker.network.bridge.enable_ip_masquerade: "true"
com.docker.network.bridge.enable_icc: "true"
ipam:
driver: default
config:
- subnet: 10.21.21.0/24