Nextcloud-Docker/.examples/docker-compose/with-nginx-proxy/postgres/apache/docker-compose.yml

69 lines
1.3 KiB
YAML
Raw Normal View History

2017-08-02 09:52:53 +00:00
version: '3'
2017-08-25 15:18:25 +00:00
services:
2017-08-02 09:52:53 +00:00
db:
image: postgres:alpine
2017-08-25 15:18:25 +00:00
restart: always
volumes:
- db:/var/lib/postgresql/data
env_file:
- db.env
2017-08-02 09:52:53 +00:00
2018-08-01 20:55:25 +00:00
app:
image: nextcloud:apache
2017-08-25 15:18:25 +00:00
restart: always
volumes:
- nextcloud:/var/www/html
environment:
- VIRTUAL_HOST=
- LETSENCRYPT_HOST=
- LETSENCRYPT_EMAIL=
- POSTGRES_HOST=db
- POSTGRES_DB=nextcloud
2017-08-25 15:18:25 +00:00
env_file:
- db.env
depends_on:
- db
networks:
- proxy-tier
- default
2017-08-02 09:52:53 +00:00
proxy:
2017-08-25 15:18:25 +00:00
build: ./proxy
restart: always
2017-08-02 09:52:53 +00:00
ports:
- 80:80
- 443:443
2017-08-25 15:18:25 +00:00
labels:
com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true"
2017-08-02 09:52:53 +00:00
volumes:
2017-08-25 15:18:25 +00:00
- certs:/etc/nginx/certs:ro
2017-08-02 09:52:53 +00:00
- vhost.d:/etc/nginx/vhost.d
- html:/usr/share/nginx/html
- /var/run/docker.sock:/tmp/docker.sock:ro
networks:
- proxy-tier
letsencrypt-companion:
image: jrcs/letsencrypt-nginx-proxy-companion
2017-08-25 15:18:25 +00:00
restart: always
2017-08-02 09:52:53 +00:00
volumes:
2017-08-25 15:18:25 +00:00
- certs:/etc/nginx/certs
2017-08-02 09:52:53 +00:00
- vhost.d:/etc/nginx/vhost.d
- html:/usr/share/nginx/html
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
- proxy-tier
2017-08-25 15:18:25 +00:00
depends_on:
- proxy
2017-08-02 09:52:53 +00:00
2017-08-25 15:18:25 +00:00
volumes:
2017-08-02 09:52:53 +00:00
db:
2017-08-25 15:18:25 +00:00
nextcloud:
certs:
vhost.d:
html:
2017-08-02 09:52:53 +00:00
2017-08-25 15:18:25 +00:00
networks:
proxy-tier: