docker-compose environment for the entire v.st system
https://v.st/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
637 B
23 lines
637 B
3 years ago
|
version: '3'
|
||
|
services:
|
||
|
nginx:
|
||
|
image: nginx:1.21-alpine
|
||
|
ports:
|
||
|
- "80:80"
|
||
|
- "443:443"
|
||
|
volumes:
|
||
|
- ./data/nginx/nginx.conf:/etc/nginx/nginx.conf
|
||
|
#- ./data/nginx/sites-enabled:/etc/nginx/sites-enabled
|
||
|
- ./data/nginx/templates:/etc/nginx/templates
|
||
|
- ./data/certbot/conf:/etc/letsencrypt
|
||
|
- ./data/certbot/www:/var/www/certbot
|
||
|
env_file:
|
||
|
- env.production
|
||
|
#environment:
|
||
|
#- NGINX_ENVSUBST_OUTPUT_DIR=/tmp/sites-enabled
|
||
|
certbot:
|
||
|
image: certbot/certbot
|
||
|
volumes:
|
||
|
- ./data/certbot/conf:/etc/letsencrypt
|
||
|
- ./data/certbot/www:/var/www/certbot
|