不必要なコメントの削除

This commit is contained in:
Rerurate_514-Researchable
2026-04-21 19:39:43 +09:00
parent 450b469369
commit 5ba984ff4f

View File

@@ -2,18 +2,9 @@ services:
apache: apache:
build: . build: .
container_name: apache-server container_name: apache-server
ports: ports:
- "8080:80" - "8080:80"
volumes: volumes:
- ./html:/usr/local/apache2/htdocs - ./html:/usr/local/apache2/htdocs
restart: unless-stopped restart: unless-stopped
# 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