forked from DyonR/docker-nextcloudcmd-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (30 loc) · 987 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (30 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
services:
occlient:
container_name: occlient
image: nextcloud
env_file: ".env"
logging:
driver: journald
options:
max-size: "50mb"
volumes:
- ${VOLUME_MAPPING:-/home:/home}
- /opt/Nextcloud/log:/opt/Nextcloud/log
- /etc/localtime:/etc/localtime:ro
environment:
- NEXTCLOUD_USER=${NEXTCLOUD_USER:-admin}
- NEXTCLOUD_PASS=${NEXTCLOUD_PASS:-none}
- NEXTCLOUD_PROTO=${NEXTCLOUD:-https}
- NEXTCLOUD_SERVER=${NEXTCLOUD_SERVER:-www.nextcloud.com}
- NEXTCLOUD_URLPATH=${NEXTCLOUD_URLPATH:-/}
- NEXTCLOUD_WEBDAV=${NEXTCLOUD_WEBDAV:-""}
- NEXTCLOUD_FILEPATH=${NEXTCLOUD_FILEPATH:-/}
- TRUST_SELFSIGN=${TRUST_SELFSIGN:-0}
- SYNC_HIDDEN=${SYNC_HIDDEN:-0}
- SILENCE_OUTPUT=${SILENCE_OUTPUT:-0}
- RUN_INTERVAL=${RUN_INTERVAL:-120}
- DEBUG=${DEBUG:-0}
- RUN_UID=${RUN_UID:-9001}
- RUN_GID=${RUN_GID:-9001}
restart: always
network_mode: "host"