Files
apatch-test/docker-compose.yaml

19 lines
506 B
YAML
Raw Normal View History

2026-04-21 18:25:08 +09:00
services:
apache:
build: .
container_name: apache-server
2026-04-21 19:37:36 +09:00
ports:
- "8080:80"
2026-04-21 18:25:08 +09:00
volumes:
- ./html:/usr/local/apache2/htdocs
restart: unless-stopped
2026-04-21 18:48:36 +09:00
2026-04-21 19:37:36 +09:00
# cloudflared:
# image: cloudflare/cloudflared:latest
# container_name: cloudflared
# restart: unless-stopped
# command: tunnel --no-autoupdate --protocol http2 --edge-ip-version 4 run --token ${CLOUDFLARE_TOKEN}
# environment:
# - TUNNEL_TOKEN=${CLOUDFLARE_TOKEN}
# depends_on:
# - apache