17 lines
321 B
YAML
17 lines
321 B
YAML
services:
|
|
app:
|
|
container_name: app
|
|
build: .
|
|
ports:
|
|
- ${PORT}
|
|
restart: always
|
|
|
|
tunnel:
|
|
image: cloudflare/cloudflared:latest
|
|
container_name: tunnel
|
|
env_file: .env
|
|
restart: unless-stopped
|
|
command: tunnel --no-autoupdate run
|
|
environment:
|
|
- TUNNEL_TOKEN=${TUNNEL_TOKEN}
|