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