Created
April 26, 2018 07:47
-
-
Save patrickjahns/d022d674e91d16d821eb93a6ed744f29 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2.1' | |
volumes: | |
files: | |
driver: local | |
mysql: | |
driver: local | |
backup: | |
driver: local | |
redis: | |
driver: local | |
services: | |
owncloud: | |
build: . | |
restart: always | |
ports: | |
- 8433:443 | |
- 8080:80 | |
depends_on: | |
- db | |
- redis | |
environment: | |
- OWNCLOUD_DB_TYPE=mysql | |
- OWNCLOUD_DB_NAME=owncloud | |
- OWNCLOUD_DB_USERNAME=owncloud | |
- OWNCLOUD_DB_PASSWORD=owncloud | |
- OWNCLOUD_DB_HOST=db | |
- OWNCLOUD_UTF8MB4_ENABLED=true | |
- OWNCLOUD_REDIS_ENABLED=true | |
- OWNCLOUD_REDIS_HOST=redis | |
volumes: | |
- files:/mnt/data | |
db: | |
image: webhippie/mariadb:latest | |
restart: always | |
environment: | |
- MARIADB_ROOT_PASSWORD=owncloud | |
- MARIADB_USERNAME=owncloud | |
- MARIADB_PASSWORD=owncloud | |
- MARIADB_DATABASE=owncloud | |
- MARIADB_MAX_ALLOWED_PACKET=128M | |
- MARIADB_INNODB_LOG_FILE_SIZE=64M | |
- MARIADB_INNODB_LARGE_PREFIX=ON | |
- MARIADB_INNODB_FILE_FORMAT=Barracuda | |
healthcheck: | |
test: ["CMD", "/usr/bin/healthcheck"] | |
interval: 30s | |
timeout: 10s | |
retries: 5 | |
volumes: | |
- mysql:/var/lib/mysql | |
- backup:/var/lib/backup | |
redis: | |
image: webhippie/redis:latest | |
restart: always | |
environment: | |
- REDIS_DATABASES=1 | |
healthcheck: | |
test: ["CMD", "/usr/bin/healthcheck"] | |
interval: 30s | |
timeout: 10s | |
retries: 5 | |
volumes: | |
- redis:/var/lib/redis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM owncloudci/base:7.1 | |
MAINTAINER ownCloud DevOps <[email protected]> | |
RUN curl -sLo - https://download.owncloud.org/community/owncloud-daily-master-qa.tar.bz2 | tar xfj - -C /var/www/ | |
RUN find /var/www/owncloud \( \! -user www-data -o \! -group www-data \) -print0 | xargs -r -0 chown www-data:www-data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment