2025-03-09 15:51:47 +00:00
|
|
|
services:
|
|
|
|
nginx:
|
|
|
|
image: nginx:latest
|
2025-03-30 14:19:42 +01:00
|
|
|
container_name: nginx
|
2025-03-09 15:51:47 +00:00
|
|
|
ports:
|
|
|
|
- "80:80"
|
|
|
|
- "443:443"
|
|
|
|
volumes:
|
|
|
|
- ./conf.d:/etc/nginx/conf.d
|
|
|
|
- /etc/letsencrypt:/etc/letsencrypt:ro
|
|
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
|
|
- web
|
|
|
|
|
|
|
|
networks:
|
|
|
|
web:
|
|
|
|
external: true
|