b2e04519ed
Signed-off-by: Tilo Spannagel <development@tilosp.de>
31 lines
434 B
YAML
31 lines
434 B
YAML
version: '3'
|
|
|
|
services:
|
|
db:
|
|
build: ./db
|
|
restart: always
|
|
volumes:
|
|
- db:/var/lib/mysql
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=
|
|
env_file:
|
|
- db.env
|
|
|
|
app:
|
|
image: nextcloud:apache
|
|
restart: always
|
|
ports:
|
|
- 8080:80
|
|
volumes:
|
|
- nextcloud:/var/www/html
|
|
environment:
|
|
- MYSQL_HOST=db
|
|
env_file:
|
|
- db.env
|
|
depends_on:
|
|
- db
|
|
|
|
volumes:
|
|
db:
|
|
nextcloud:
|