wisski-cloud-distillery/distillery/resources/compose/web/docker-compose.yml
Tom Wiesing 7cbfaf99d5
barrel: Increase max upload size to 250 MB
This commit increases the maximal php upload size to 250 MB (from the
default of 2).
2020-08-14 11:08:06 +02:00

48 lines
1.1 KiB
YAML

version: "3.7"
services:
nginx-proxy:
image: nginxproxy/nginx-proxy:alpine
environment:
- DEFAULT_HOST=${DEFAULT_HOST}
ports:
- "80:80"
- "443:443"
volumes:
- "vhost:/etc/nginx/vhost.d"
- "./global.conf:/etc/nginx/conf.d/global.conf:ro"
- "htpasswd:/etc/nginx/htpasswd"
- "html:/usr/share/nginx/html"
- "/var/run/docker.sock:/tmp/docker.sock:ro"
- "certs:/etc/nginx/certs"
labels:
com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: true
restart: always
networks:
- default
letsencrypt-nginx-proxy-companion:
image: jrcs/letsencrypt-nginx-proxy-companion
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
- "htpasswd:/etc/nginx/htpasswd"
- "vhost:/etc/nginx/vhost.d"
- "html:/usr/share/nginx/html"
- "/var/run/docker.sock:/tmp/docker.sock:ro"
- "certs:/etc/nginx/certs"
restart: always
networks:
- default
depends_on:
- nginx-proxy
volumes:
vhost:
html:
certs:
htpasswd:
networks:
default:
external:
name: distillery