neb/servers/skel/docker-compose.d/docker-compose.yml
Raine 83a548ca8f feat: nebulosus tmp solution
Signed-off-by: Raine <raine@ixvd.net>
2024-03-29 17:04:43 +01:00

27 lines
No EOL
554 B
YAML

# I'm very comfortable in this version, therefore it's the standard
version: '2.2'
services:
# default nginx setup
nginx:
build:
context: ../../../images/nginx
environment:
CERTBOT_EMAIL: "webmaster@ixvd.net"
CERTBOT_DOMAINS: "localhost"
volumes:
- /srv/certbot/data:/etc/letsencrypt
- /srv/certbot/other/www:/var/www/certbot
ports:
- 80:80
- 443:443
networks:
- proxy
# Here the default networks are defined
networks:
proxy:
external: true
internal:
external: true