michaelnet/rocktiplex/docker-compose.yml

37 lines
713 B
YAML
Raw Normal View History

2023-05-26 12:09:20 -07:00
version: '3'
2023-06-21 02:28:39 -07:00
networks:
status-proxy:
external: false
2023-05-26 12:09:20 -07:00
services:
2023-06-21 02:28:39 -07:00
2023-05-26 12:09:20 -07:00
fathom:
image: usefathom/fathom
container_name: fathom
restart: always
ports:
- "8080:8080"
volumes:
- type: bind
source: ./fathom.db
target: /app/fathom.db
2023-06-21 02:28:39 -07:00
status-proxy:
image: git.michaellisano.com/mcf/status-proxy:latest
container_name: mcf-status-proxy
restart: always
networks:
- status-proxy
status-proxy-cloudflared:
container_name: cloudflared-mcf-status-proxy
image: cloudflare/cloudflared
restart: unless-stopped
command: tunnel run
environment:
- TUNNEL_TOKEN=${STATUS_PROXY_TUNNEL_TOKEN}
networks:
- status-proxy