f61547aace
commit1c7f70e579Author: Sébastien STOLZ <sebastien@e-declic.com> Date: Thu Dec 21 23:01:16 2017 +0100 change mysql container name commit622f42e9b9Author: Sébastien STOLZ <sebastien@e-declic.com> Date: Thu Dec 21 22:57:42 2017 +0100 port conf modification commit186d94a7ecAuthor: Sébastien STOLZ <sebastien@e-declic.com> Date: Tue Dec 19 17:27:38 2017 +0100 Increase Makefile readability commitb7a01bbeb3Author: Sébastien STOLZ <sebastien@e-declic.com> Date: Tue Dec 19 17:27:21 2017 +0100 Change backup/restore filename strategy commit6ffa535de0Author: Sébastien STOLZ <sebastien@e-declic.com> Date: Tue Dec 19 16:33:48 2017 +0100 refactor
25 lines
642 B
YAML
25 lines
642 B
YAML
version: '3'
|
|
|
|
services:
|
|
|
|
# https://hub.docker.com/r/wonderfall/nextcloud/
|
|
nextcloud:
|
|
image: wonderfall/nextcloud:12.0
|
|
container_name: ${CLIENT}.nextcloud.${ENV}
|
|
env_file: env/nextcloud.env
|
|
volumes:
|
|
- ../volume/nextcloud/data:/data
|
|
- ../volume/nextcloud/config:/config
|
|
- ../volume/nextcloud/apps2:/apps2
|
|
- ../volume/nextcloud/themes:/nextcloud/themes
|
|
restart: always
|
|
|
|
# https://hub.docker.com/_/mysql/
|
|
mysql:
|
|
build: build/mysql
|
|
container_name: ${CLIENT}.mysql.${ENV}
|
|
env_file: env/mysql.env
|
|
volumes:
|
|
- "../volume/mysql/var.lib.mysql:/var/lib/mysql"
|
|
restart: always
|