Spaces:
Sleeping
Sleeping
File size: 544 Bytes
e7fbfcc ab6af5b e7fbfcc ab6af5b e7fbfcc ab6af5b e7fbfcc ab6af5b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
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
|