2017-08-13 14:08:39 +00:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
db:
|
2018-11-15 14:49:33 +00:00
|
|
|
image: postgres:alpine
|
2017-08-13 14:08:39 +00:00
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- db:/var/lib/postgresql/data
|
|
|
|
env_file:
|
|
|
|
- db.env
|
|
|
|
|
2018-08-01 20:55:25 +00:00
|
|
|
app:
|
2018-11-15 14:49:33 +00:00
|
|
|
image: nextcloud:fpm-alpine
|
2017-08-13 14:08:39 +00:00
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- nextcloud:/var/www/html
|
2017-09-05 21:41:20 +00:00
|
|
|
environment:
|
|
|
|
- POSTGRES_HOST=db
|
2017-08-13 14:08:39 +00:00
|
|
|
env_file:
|
|
|
|
- db.env
|
2017-08-16 18:57:33 +00:00
|
|
|
depends_on:
|
|
|
|
- db
|
2017-08-13 14:08:39 +00:00
|
|
|
|
|
|
|
web:
|
2017-08-14 13:32:08 +00:00
|
|
|
build: ./web
|
2017-08-13 14:08:39 +00:00
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- 8080:80
|
|
|
|
volumes:
|
|
|
|
- nextcloud:/var/www/html:ro
|
2017-08-16 18:57:33 +00:00
|
|
|
depends_on:
|
|
|
|
- app
|
2017-08-13 14:08:39 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
db:
|
|
|
|
nextcloud:
|