Docker base

This commit is contained in:
2022-11-09 15:16:22 -03:00
parent 0354449c4a
commit ad8afb574d
2 changed files with 25 additions and 0 deletions

12
docker-compose.yml Normal file
View File

@ -0,0 +1,12 @@
version: '3'
services:
proxy:
container_name: emails-proxy
image: nginx
restart: unless-stopped
volumes:
- ./default.conf:/etc/nginx/conf.d/default.conf
- ${LOGS_PATH}/proxy:/var/logs/nginx
ports:
- "${WEB_PORT:-80}:80"