freed.place/docker-compose.yml

9 lines
167 B
YAML
Raw Permalink Normal View History

2025-01-26 17:18:09 +01:00
services:
2025-01-26 18:41:04 +01:00
web:
image: nginx
2025-01-26 17:18:09 +01:00
volumes:
2025-01-26 18:41:04 +01:00
- ./public:/usr/share/nginx/html:ro
- ./default.conf:/etc/nginx/conf.d/default.conf
2025-01-26 17:18:09 +01:00
ports:
2025-01-26 18:41:04 +01:00
- "80:80"