mirror of
https://github.com/casjaysdevdocker/opencloud
synced 2026-06-23 20:01:00 -04:00
4fe80a123289642b3cbc1af2441708f53b5d18a5
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/etc/docker/init.d/01-clamav.sh rootfs/usr/local/etc/docker/init.d/02-tika.sh rootfs/usr/local/etc/docker/init.d/03-radicale.sh rootfs/usr/local/etc/docker/init.d/04-collabora.sh rootfs/usr/local/etc/docker/init.d/05-opencloud.sh rootfs/usr/local/etc/docker/init.d/06-nginx.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 opencloud 🚀
opencloud README
Install my system scripts
sudo bash -c "$(curl -q -LSsf "https://github.com/systemmgr/installer/raw/main/install.sh")"
sudo systemmgr --config && sudo systemmgr install scripts
Automatic install/update
dockermgr update opencloud
Install and run container
dockerHome="/var/lib/srv/$USER/docker/casjaysdevdocker/opencloud/opencloud/latest/volumes"
mkdir -p "/var/lib/srv/$USER/docker/opencloud/volumes"
git clone "https://github.com/dockermgr/opencloud" "$HOME/.local/share/CasjaysDev/dockermgr/opencloud"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/opencloud/rootfs/." "$dockerHome/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-opencloud-latest \
--hostname opencloud \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$dockerHome/data:/data:z" \
-v "$dockerHome/config:/config:z" \
-p 80:80 \
casjaysdevdocker/opencloud:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdevdocker/opencloud
container_name: casjaysdevdocker-opencloud
environment:
- TZ=America/New_York
- HOSTNAME=opencloud
volumes:
- "/var/lib/srv/$USER/docker/casjaysdevdocker/opencloud/opencloud/latest/volumes/data:/data:z"
- "/var/lib/srv/$USER/docker/casjaysdevdocker/opencloud/opencloud/latest/volumes/config:/config:z"
ports:
- 80:80
restart: always
Get source files
dockermgr download src casjaysdevdocker/opencloud
OR
git clone "https://github.com/casjaysdevdocker/opencloud" "$HOME/Projects/github/casjaysdevdocker/opencloud"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/opencloud"
buildx
Authors
Description
Languages
Shell
96.5%
Dockerfile
3.5%