mirror of
https://github.com/casjaysdevdocker/nextcloud
synced 2026-06-23 20:01:00 -04:00
7a9087f1fb65a87f51145030be83cdce327f4a86
Update the embedded entrypoint copies in rootfs/ to match the upstream template change. Internal state files renamed to dotfiles so they're not matched by `/run/*.pid` cleanup globs: - /run/init.d/entrypoint.pid -> /run/.entrypoint.pid - /run/no_exit.pid -> /run/.no_exit.pid - /run/backup.pid -> /run/.backup.pid - /run/__start_init_scripts.pid -> /run/.start_init_scripts.pid Per-service PIDs in /run/init.d/ are unchanged. rootfs/usr/local/bin/entrypoint.sh rootfs/usr/local/etc/docker/functions/entrypoint.sh rootfs/usr/local/share/template-files/config/env/default.sample rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
👋 Welcome to nextcloud 🚀
nextcloud README
Run container
dockermgr update nextcloud
via command line
docker pull casjaysdevdocker/nextcloud:latest && \
docker run -d \
--restart always \
--name casjaysdevdocker-nextcloud \
--hostname casjaysdev-nextcloud \
-e TZ=${TIMEZONE:-America/New_York} \
-v $HOME/.local/share/srv/docker/nextcloud/files/data:/data:z \
-v $HOME/.local/share/srv/docker/nextcloud/files/config:/config:z \
-p 80:80 \
casjaysdevdocker/nextcloud:latest
via docker-compose
version: "2"
services:
nextcloud:
image: casjaysdevdocker/nextcloud
container_name: nextcloud
environment:
- TZ=America/New_York
- HOSTNAME=casjaysdev-nextcloud
volumes:
- $HOME/.local/share/srv/docker/nextcloud/files/data:/data:z
- $HOME/.local/share/srv/docker/nextcloud/files/config:/config:z
ports:
- 80:80
restart: always
Authors
🤖 casjay: Github Docker 🤖
⛵ CasjaysDevDocker: Github Docker ⛵
Description
Languages
Shell
92.4%
Dockerfile
7.6%