mirror of
https://github.com/nextcloud/docker.git
synced 2024-11-05 22:04:58 +01:00
29 lines
382 B
YAML
29 lines
382 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
db:
|
||
|
image: mariadb
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- db:/var/lib/mysql
|
||
|
environment:
|
||
|
- MYSQL_ROOT_PASSWORD=
|
||
|
env_file:
|
||
|
- db.env
|
||
|
|
||
|
app:
|
||
|
build: ./app
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 8080:80
|
||
|
volumes:
|
||
|
- nextcloud:/var/www/html
|
||
|
env_file:
|
||
|
- db.env
|
||
|
links:
|
||
|
- db
|
||
|
|
||
|
volumes:
|
||
|
db:
|
||
|
nextcloud:
|