Spaces:
Sleeping
Sleeping
version: '3.8' | |
services: | |
bat-tiles: | |
image: python:3.9-slim | |
hostname: bat-tiles | |
container_name: bat-tiles | |
command: python3 -m http.server 8080 | |
expose: | |
- 8080 | |
volumes: | |
- /bat-tiles:/bat-tiles | |
working_dir: /bat-tiles | |
cloudflared: | |
image: cloudflare/cloudflared | |
hostname: cloudflare-tunnel | |
container_name: cloudflared | |
environment: | |
- "TUNNEL_TOKEN=${CLOUDFLARE_TUNNEL_TOKEN}" | |
restart: unless-stopped | |
depends_on: | |
- bat-tiles | |
command: tunnel run --protocol http2 | |