2017-08-02 11:52:53 +02:00
|
|
|
version: '3'
|
|
|
|
|
2017-08-25 17:18:25 +02:00
|
|
|
services:
|
2017-08-02 11:52:53 +02:00
|
|
|
db:
|
2018-11-15 15:49:33 +01:00
|
|
|
image: postgres:alpine
|
2017-08-25 17:18:25 +02:00
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- db:/var/lib/postgresql/data
|
|
|
|
env_file:
|
|
|
|
- db.env
|
2017-08-02 11:52:53 +02:00
|
|
|
|
2021-04-26 19:15:37 +02:00
|
|
|
redis:
|
|
|
|
image: redis:alpine
|
|
|
|
restart: always
|
|
|
|
|
2018-08-01 22:55:25 +02:00
|
|
|
app:
|
2017-09-05 23:41:20 +02:00
|
|
|
image: nextcloud:apache
|
2017-08-25 17:18:25 +02:00
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- nextcloud:/var/www/html
|
|
|
|
environment:
|
|
|
|
- VIRTUAL_HOST=
|
|
|
|
- LETSENCRYPT_HOST=
|
|
|
|
- LETSENCRYPT_EMAIL=
|
2017-09-05 23:41:20 +02:00
|
|
|
- POSTGRES_HOST=db
|
2021-04-26 19:15:37 +02:00
|
|
|
- REDIS_HOST=redis
|
2017-08-25 17:18:25 +02:00
|
|
|
env_file:
|
|
|
|
- db.env
|
|
|
|
depends_on:
|
|
|
|
- db
|
2021-04-26 19:15:37 +02:00
|
|
|
- redis
|
2017-08-25 17:18:25 +02:00
|
|
|
networks:
|
|
|
|
- proxy-tier
|
|
|
|
- default
|
2017-08-02 11:52:53 +02:00
|
|
|
|
2021-04-26 19:15:37 +02:00
|
|
|
cron:
|
|
|
|
image: nextcloud:apache
|
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- nextcloud:/var/www/html
|
|
|
|
entrypoint: /cron.sh
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
|
|
|
|
2017-08-02 11:52:53 +02:00
|
|
|
proxy:
|
2017-08-25 17:18:25 +02:00
|
|
|
build: ./proxy
|
|
|
|
restart: always
|
2017-08-02 11:52:53 +02:00
|
|
|
ports:
|
|
|
|
- 80:80
|
|
|
|
- 443:443
|
2017-08-25 17:18:25 +02:00
|
|
|
labels:
|
|
|
|
com.github.jrcs.letsencrypt_nginx_proxy_companion.nginx_proxy: "true"
|
2017-08-02 11:52:53 +02:00
|
|
|
volumes:
|
2017-08-25 17:18:25 +02:00
|
|
|
- certs:/etc/nginx/certs:ro
|
2017-08-02 11:52:53 +02: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 17:18:25 +02:00
|
|
|
restart: always
|
2017-08-02 11:52:53 +02:00
|
|
|
volumes:
|
2017-08-25 17:18:25 +02:00
|
|
|
- certs:/etc/nginx/certs
|
2021-08-23 14:42:38 +02:00
|
|
|
- acme:/etc/acme.sh
|
2017-08-02 11:52:53 +02: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 17:18:25 +02:00
|
|
|
depends_on:
|
|
|
|
- proxy
|
2017-08-02 11:52:53 +02:00
|
|
|
|
2021-04-26 19:15:37 +02:00
|
|
|
# self signed
|
|
|
|
# omgwtfssl:
|
|
|
|
# image: paulczar/omgwtfssl
|
|
|
|
# restart: "no"
|
|
|
|
# volumes:
|
|
|
|
# - certs:/certs
|
|
|
|
# environment:
|
|
|
|
# - SSL_SUBJECT=servhostname.local
|
|
|
|
# - CA_SUBJECT=my@example.com
|
|
|
|
# - SSL_KEY=/certs/servhostname.local.key
|
|
|
|
# - SSL_CSR=/certs/servhostname.local.csr
|
|
|
|
# - SSL_CERT=/certs/servhostname.local.crt
|
|
|
|
# networks:
|
|
|
|
# - proxy-tier
|
|
|
|
|
2017-08-25 17:18:25 +02:00
|
|
|
volumes:
|
2017-08-02 11:52:53 +02:00
|
|
|
db:
|
2017-08-25 17:18:25 +02:00
|
|
|
nextcloud:
|
|
|
|
certs:
|
2021-08-23 14:42:38 +02:00
|
|
|
acme:
|
2017-08-25 17:18:25 +02:00
|
|
|
vhost.d:
|
|
|
|
html:
|
2017-08-02 11:52:53 +02:00
|
|
|
|
2017-08-25 17:18:25 +02:00
|
|
|
networks:
|
|
|
|
proxy-tier:
|