initial state, working locally
This commit is contained in:
commit
b219c4b498
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
mounts/
|
18
docker-compose.yml
Normal file
18
docker-compose.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
version: '3.5'
|
||||
|
||||
services:
|
||||
ocis:
|
||||
image: owncloud/ocis
|
||||
ports:
|
||||
- 9200:9200
|
||||
volumes:
|
||||
- type: bind
|
||||
source: ./mounts/config
|
||||
target: /etc/ocis
|
||||
- type: bind
|
||||
source: ./mounts/data
|
||||
target: /var/lib/ocis
|
||||
environment:
|
||||
OCIS_INSECURE: 'true'
|
||||
PROXY_HTTP_ADDR: 0.0.0.0:9200
|
||||
OCIS_URL: https://localhost:9200/
|
Loading…
Reference in a new issue