mirror of
https://github.com/casjaysdevdocker/valkey
synced 2026-05-15 02:47:50 -04:00
6b3a6969bcfbd53246a79f32f4b8721d575076ec
Some checks are pending
release-tag / release-image (push) Waiting to run
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 valkey 🚀
valkey 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 valkey
Install and run container
mkdir -p "$HOME/.local/share/srv/docker/valkey/volumes"
git clone "https://github.com/dockermgr/valkey" "$HOME/.local/share/CasjaysDev/dockermgr/valkey"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/valkey/rootfs/." "$HOME/.local/share/srv/docker/valkey/volumes/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-valkey \
--hostname valkey \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-valkey/volumes/data:/data:z" \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-valkey/volumes/config:/config:z" \
-p 80:80 \
casjaysdevdocker/valkey:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdevdocker/valkey
container_name: casjaysdevdocker-valkey
environment:
- TZ=America/New_York
- HOSTNAME=valkey
volumes:
- "$HOME/.local/share/srv/docker/casjaysdevdocker-valkey/volumes/data:/data:z"
- "$HOME/.local/share/srv/docker/casjaysdevdocker-valkey/volumes/config:/config:z"
ports:
- 80:80
restart: always
Get source files
dockermgr download src casjaysdevdocker/valkey
OR
git clone "https://github.com/casjaysdevdocker/valkey" "$HOME/Projects/github/casjaysdevdocker/valkey"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/valkey"
buildx
Authors
Description
Languages
Shell
93.1%
Dockerfile
6.9%