2017-07-13 17:50:04 +02:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
db:
|
2018-04-19 18:47:19 +02:00
|
|
|
image: mariadb
|
|
|
|
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
|
2017-07-13 17:50:04 +02:00
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- db:/var/lib/mysql
|
|
|
|
environment:
|
|
|
|
- MYSQL_ROOT_PASSWORD=
|
|
|
|
env_file:
|
|
|
|
- db.env
|
|
|
|
|
2017-08-13 13:03:54 +02:00
|
|
|
redis:
|
|
|
|
image: redis
|
|
|
|
restart: always
|
|
|
|
|
2017-07-13 17:50:04 +02:00
|
|
|
app:
|
|
|
|
build: ./app
|
|
|
|
restart: always
|
|
|
|
ports:
|
|
|
|
- 8080:80
|
|
|
|
volumes:
|
|
|
|
- nextcloud:/var/www/html
|
2017-09-05 23:41:20 +02:00
|
|
|
environment:
|
|
|
|
- MYSQL_HOST=db
|
2017-07-13 17:50:04 +02:00
|
|
|
env_file:
|
|
|
|
- db.env
|
2017-08-16 20:57:33 +02:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2017-07-13 17:50:04 +02:00
|
|
|
|
|
|
|
cron:
|
|
|
|
build: ./app
|
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- nextcloud:/var/www/html
|
2018-01-30 13:16:40 +01:00
|
|
|
entrypoint: /cron.sh
|
2017-08-16 20:57:33 +02:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2017-07-13 17:50:04 +02:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
db:
|
|
|
|
nextcloud:
|