runtipi/docker-compose.yml

66 lines
1.7 KiB
YAML
Raw Normal View History

2022-04-21 19:41:56 +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
image: traefik:v2.6
restart: always
ports:
- ${NGINX_PORT-80}:80
- ${PROXY_PORT-8080}:8080
2022-04-28 18:18:00 +00:00
command: --api.insecure=true --providers.docker
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ${PWD}/traefik:/root/.config
networks:
2022-05-17 18:22:03 +00:00
- 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}
command: bash -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
ports:
- 3001:3001
volumes:
## Docker sock
- /var/run/docker.sock:/var/run/docker.sock:ro
- ${PWD}:/tipi
2022-05-16 21:34:33 +00:00
environment:
- INTERNAL_IP=${INTERNAL_IP}
2022-05-17 10:51:59 +00:00
- TIPI_VERSION=${TIPI_VERSION}
- JWT_SECRET=${JWT_SECRET}
2022-05-17 17:07:24 +00:00
- ROOT_FOLDER_HOST=${ROOT_FOLDER_HOST}
2022-05-18 18:33:57 +00:00
- NGINX_PORT=${NGINX_PORT}
2022-05-16 21:30:08 +00:00
networks:
2022-05-17 18:22:03 +00:00
- tipi_main_network
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}
command: bash -c "cd /dasboard && 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
ports:
2022-04-21 20:14:47 +00:00
- 3000:3000
2022-04-07 08:34:18 +00:00
networks:
2022-05-17 18:22:03 +00:00
- tipi_main_network
2022-05-17 10:51:59 +00:00
environment:
- INTERNAL_IP=${INTERNAL_IP}
2022-04-28 18:18:00 +00:00
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
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