selfhost/www/docker-compose.yaml

22 lines
391 B
YAML
Raw Normal View History

2020-11-28 22:51:37 +01:00
services:
2024-12-06 16:02:20 +01:00
webserver-www:
2024-03-05 07:04:22 +00:00
image: nginx:stable
2020-11-28 22:51:37 +01:00
volumes:
- ${HTML}:/usr/share/nginx/html:ro
2024-04-05 06:29:51 +00:00
- $PWD/nginx.conf:/etc/nginx/nginx.conf:ro
2020-11-28 22:51:37 +01:00
networks:
- web
restart: unless-stopped
2023-06-09 08:58:54 +02:00
healthcheck:
test: ["CMD", "curl" ,"--fail", "localhost"]
interval: 5s
timeout: 3s
2020-11-28 22:51:37 +01:00
labels:
- "docker.group=www"
2021-03-18 16:15:52 +01:00
2020-11-28 22:51:37 +01:00
networks:
web:
external: true
2023-01-12 10:10:34 +01:00