mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-10 15:12:01 -03:30
23 lines
497 B
YAML
23 lines
497 B
YAML
version: '3'
|
|
services:
|
|
nextcloudpi:
|
|
image: ownyourbits/nextcloudpi-x86
|
|
command: "${IP}"
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
- "4443:4443"
|
|
volumes:
|
|
- ncdata:/data
|
|
- /etc/localtime:/etc/localtime:ro
|
|
# for nc-encrypt
|
|
devices:
|
|
- /dev/fuse:/dev/fuse
|
|
# for nc-encrypt # NOTE: take a look at this https://github.com/docker/for-linux/issues/321#issuecomment-677744121
|
|
cap_add:
|
|
- SYS_ADMIN
|
|
container_name: nextcloudpi
|
|
|
|
volumes:
|
|
ncdata:
|