23 lines
463 B
YAML
23 lines
463 B
YAML
version: '3.8'
|
|
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
container_name: nginx
|
|
restart: unless-stopped
|
|
networks:
|
|
- web
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
volumes:
|
|
- ./volumes/conf.d:/etc/nginx/conf.d
|
|
- ./volumes/html:/usr/share/nginx/html
|
|
- ./volumes/nginx.conf:/etc/nginx/nginx.conf
|
|
- ./volumes/logs:/var/log/nginx
|
|
- /etc/letsencrypt:/etc/letsencrypt
|
|
|
|
networks:
|
|
web:
|
|
external: false
|
|
name: web
|