mirror of
https://github.com/casjaysdevdocker/remotely
synced 2026-06-23 20:01:04 -04:00
f74e4d3a1eb56b60a0035b78586e7f4ca58f6aff
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-remotely.sh rootfs/usr/local/etc/docker/init.d/99-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 remotely 🚀
remotely 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 remotely
Install and run container
mkdir -p "$HOME/.local/share/srv/docker/remotely/volumes"
git clone "https://github.com/dockermgr/remotely" "$HOME/.local/share/CasjaysDev/dockermgr/remotely"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/remotely/rootfs/." "$HOME/.local/share/srv/docker/remotely/volumes/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-remotely \
--hostname remotely \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-remotely/volumes/data:/data:z" \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-remotely/volumes/config:/config:z" \
-p 80:80 \
casjaysdevdocker/remotely:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdevdocker/remotely
container_name: casjaysdevdocker-remotely
environment:
- TZ=America/New_York
- HOSTNAME=remotely
volumes:
- "$HOME/.local/share/srv/docker/casjaysdevdocker-remotely/volumes/data:/data:z"
- "$HOME/.local/share/srv/docker/casjaysdevdocker-remotely/volumes/config:/config:z"
ports:
- 80:80
restart: always
Get source files
dockermgr download src casjaysdevdocker/remotely
OR
git clone "https://github.com/casjaysdevdocker/remotely" "$HOME/Projects/github/casjaysdevdocker/remotely"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/remotely"
buildx
Authors
Description
Languages
Shell
95.8%
Dockerfile
4.2%