18 lines
321 B
YAML
18 lines
321 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
web:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "8082:80"
|
|
volumes:
|
|
- ./:/usr/share/nginx/html:ro
|
|
restart: unless-stopped
|
|
|
|
tunnel:
|
|
image: cloudflare/cloudflared:latest
|
|
command: tunnel run
|
|
environment:
|
|
- TUNNEL_TOKEN=${TUNNEL_TOKEN}
|
|
restart: unless-stopped
|