33 lines
733 B
YAML
33 lines
733 B
YAML
# I'm very comfortable in this version, therefore it's the standard
|
|
version: '2.2'
|
|
|
|
services:
|
|
# default nginx setup
|
|
nginx:
|
|
build: custom/nginx
|
|
environment:
|
|
CERTBOT_EMAIL: "webmaster@ixvd.net"
|
|
CERTBOT_DOMAINS: "keymaker.ixvd.net,ixvd.net,via.ixvd.net,cdn.ixvd.net,park.ixvd.net,nebulosus.nl"
|
|
volumes:
|
|
- /srv/certbot/data:/etc/letsencrypt
|
|
- /srv/certbot/other/www:/var/www/certbot
|
|
# random cdn data
|
|
- /usr/share/cdn:/cdn_data
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
networks:
|
|
- proxy
|
|
|
|
pdsite:
|
|
image: git.ixvd.net/ixvd/pdsite
|
|
networks:
|
|
- proxy
|
|
|
|
# Here the default networks are defined
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
internal:
|
|
external: true
|
|
|