2017-09-07 17:43:00 +02:00
|
|
|
version: "2"
|
|
|
|
|
|
|
|
services:
|
|
|
|
webservice:
|
|
|
|
build: ./webservice
|
|
|
|
volumes:
|
|
|
|
- "/nextcloud/config:/var/www/html/config"
|
|
|
|
- "/nextcloud/data:/var/www/html/data"
|
|
|
|
ports:
|
|
|
|
- "8000:80"
|
|
|
|
networks:
|
|
|
|
- web
|
|
|
|
- internal
|
|
|
|
|
|
|
|
db:
|
|
|
|
build: ./db
|
|
|
|
volumes:
|
|
|
|
- "/nextcloud/db:/var/lib/mysql"
|
|
|
|
environment:
|
|
|
|
- MYSQL_ROOT_PASSWORD=toor
|
2022-12-09 11:52:31 +01:00
|
|
|
- MARIADB_AUTO_UPGRADE=true
|
2017-09-07 17:43:00 +02:00
|
|
|
networks:
|
|
|
|
- internal
|
|
|
|
|
|
|
|
networks:
|
|
|
|
web:
|
|
|
|
external:
|
|
|
|
name: proxy_web
|
|
|
|
internal:
|