32 lines
700 B
YAML
32 lines
700 B
YAML
containers:
|
|
- service_name: le
|
|
active: true
|
|
container_name: le
|
|
image: linuxserver/letsencrypt
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
volumes:
|
|
- "{{ appdata_path }}/letsencrypt/config:/config"
|
|
restart: always
|
|
cap_add:
|
|
- NET_ADMIN
|
|
include_global_env_vars: true
|
|
environment:
|
|
- EMAIL={{ secret_cloudflare.email }}
|
|
- URL={{ DOMAIN }}
|
|
- SUBDOMAINS=wildcard
|
|
- ONLY_SUBDOMAINS=true
|
|
- DHLEVEL=4096
|
|
- VALIDATION=dns
|
|
- DNSPLUGIN=cloudflare
|
|
|
|
- service_name: org
|
|
active: false
|
|
container_name: org
|
|
image: organizr/organizr
|
|
include_global_env_vars: true
|
|
environment:
|
|
- branch=dev
|
|
- fpm=true
|