bmen-nginx-proxy/docker-compose.yml

34 lines
617 B
YAML
Raw Normal View History

2019-09-12 20:50:24 +00:00
---
version: "2"
networks:
webproxy:
external: true
2019-09-12 20:50:24 +00:00
services:
letsencrypt:
image: linuxserver/letsencrypt
container_name: letsencrypt
cap_add:
- NET_ADMIN
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
- URL=bmen.cc
2019-09-13 00:45:59 +00:00
- SUBDOMAINS=www,git
2019-09-12 20:50:24 +00:00
- VALIDATION=http
- EMAIL=webmaster@bmen.cc
- DHLEVEL=2048
- ONLY_SUBDOMAINS=false
- STAGING=false
volumes:
2019-09-12 21:23:21 +00:00
- /opt/appdata/webproxy:/config
networks:
- webproxy
2019-09-12 21:14:00 +00:00
container_name: webproxy
2019-09-12 20:50:24 +00:00
ports:
- 443:443
- 80:80
restart: unless-stopped