docker-nextcloud/docker-compose.yml

25 lines
555 B
YAML
Raw Normal View History

2018-12-18 20:25:46 +01:00
---
version: '3'
# This instance is using SQLite3 as database backend.
# Please consider using a proper database like MariaDB or PostgreSQL
2018-12-18 20:45:23 +01:00
# if you want to use this productive.
2018-12-18 20:25:46 +01:00
services:
nextcloud:
image: wonderfall/nextcloud
build:
context: .
2020-01-27 13:03:49 +01:00
dockerfile: Dockerfile.18.0
2018-12-18 20:25:46 +01:00
environment:
- UID=1000
- GID=1000
- ADMIN_USER=mrrobot
- ADMIN_PASSWORD=supercomplicatedpassword
- DB_TYPE=sqlite
volumes:
- ./data:/data
- ./config:/config
- ./apps:/apps2
ports:
- 8888:8888