1
0
mirror of https://github.com/navilg/media-stack.git synced 2024-11-21 10:05:46 +02:00
media-stack/docker-compose-nginx.yml
Navratan Lal Gupta 4a8169f5f2 Upgrade Nginx
2023-06-17 16:12:28 +01:00

23 lines
367 B
YAML

version: '2'
name: nginx
services:
nginx:
image: nginx:1.25.1-alpine
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