media-stack/docker-compose-nginx.yml

23 lines
367 B
YAML
Raw Normal View History

2022-07-18 12:43:16 +00:00
version: '2'
name: nginx
services:
nginx:
2023-06-17 15:12:28 +00:00
image: nginx:1.25.1-alpine
2022-07-18 12:43:16 +00:00
container_name: nginx
networks:
- mynetwork
volumes:
- nginx-config:/etc/nginx
- letsencrypt:/etc/letsencrypt
ports:
- 80:80
- 443:443
restart: unless-stopped
volumes:
nginx-config:
letsencrypt:
networks:
mynetwork:
external: true