This commit is contained in:
zino
2023-11-26 17:40:52 +01:00
parent 8b97f6a8c3
commit 6f77f5dba6

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
version: '3.8'
services:
nginx:
image: nginx:latest
container_name: nginx
restart: unless-stopped
networks:
- web
ports:
- 80:80
- 443:443
volumes:
- ./volumes/nginx:/etc/nginx
- ./volumes/html:/usr/share/nginx/html
- /etc/letsencrypt:/etc/letsencrypt
networks:
web:
external: false
name: web