mirror of
https://codeberg.org/Hyperpipe/Docker
synced 2024-12-06 19:16:44 +01:00
30 lines
843 B
YAML
30 lines
843 B
YAML
services:
|
|
hyperpipe-frontend:
|
|
image: codeberg.org/hyperpipe/hyperpipe:latest
|
|
container_name: hyperpipe-frontend
|
|
environment:
|
|
- HYP_API=HYPERPIPE_API_URL
|
|
- PIPED_API=PIPED_API_URL
|
|
restart: unless-stopped
|
|
ports:
|
|
- '8080:80'
|
|
hyperpipe-backend:
|
|
image: codeberg.org/hyperpipe/hyperpipe-backend:latest
|
|
container_name: hyperpipe-backend
|
|
environment:
|
|
- HYP_PROXY=PIPED_PROXY_URL
|
|
restart: unless-stopped
|
|
ports:
|
|
- '3000:3000'
|
|
watchtower:
|
|
image: containrrr/watchtower
|
|
container_name: watchtower
|
|
restart: always
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /etc/timezone:/etc/timezone:ro
|
|
environment:
|
|
- WATCHTOWER_CLEANUP=true
|
|
- WATCHTOWER_INCLUDE_RESTARTING=true
|
|
command: hyperpipe-frontend hyperpipe-backend watchtower
|