arenos_www/docker-compose.yml

15 lines
336 B
YAML
Raw Normal View History

2025-08-30 08:31:33 +02:00
version: "3.9"
services:
web:
2025-08-30 08:54:44 +02:00
image: caddy:2-alpine
2025-08-30 08:31:33 +02:00
container_name: arenos_www
ports:
- "2000:80"
volumes:
2025-08-30 10:21:06 +02:00
<<<<<<< Updated upstream
2025-08-30 08:54:44 +02:00
- /srv/arenos-landing/html:/srv:ro
2025-08-30 10:21:06 +02:00
=======
- /srv/arenos_www/html:/srv:ro
>>>>>>> Stashed changes
2025-08-30 08:59:40 +02:00
command: ["caddy","file-server","--root","/srv","--listen",":80"]