31 lines
418 B
YAML
31 lines
418 B
YAML
version: '3'
|
|
|
|
services:
|
|
db:
|
|
image: postgres
|
|
restart: always
|
|
volumes:
|
|
- db:/var/lib/postgresql/data
|
|
env_file:
|
|
- db.env
|
|
|
|
app:
|
|
build: ./app
|
|
restart: always
|
|
volumes:
|
|
- nextcloud:/var/www/html
|
|
env_file:
|
|
- db.env
|
|
|
|
web:
|
|
build: ./web
|
|
restart: always
|
|
ports:
|
|
- 8080:80
|
|
volumes:
|
|
- nextcloud:/var/www/html:ro
|
|
|
|
volumes:
|
|
db:
|
|
nextcloud:
|