2026-04-21 18:25:08 +09:00
|
|
|
services:
|
|
|
|
|
apache:
|
|
|
|
|
build: .
|
|
|
|
|
container_name: apache-server
|
|
|
|
|
volumes:
|
|
|
|
|
- ./html:/usr/local/apache2/htdocs
|
|
|
|
|
restart: unless-stopped
|
2026-04-21 18:48:36 +09:00
|
|
|
|
|
|
|
|
cloudflared:
|
|
|
|
|
image: cloudflare/cloudflared:latest
|
|
|
|
|
container_name: cloudflared
|
|
|
|
|
restart: unless-stopped
|
2026-04-21 19:17:16 +09:00
|
|
|
command: tunnel --no-autoupdate --protocol http2 run --token ${CLOUDFLARE_TOKEN}
|
2026-04-21 18:48:36 +09:00
|
|
|
environment:
|
|
|
|
|
- TUNNEL_TOKEN=${CLOUDFLARE_TOKEN}
|
|
|
|
|
depends_on:
|
|
|
|
|
- apache
|