mirror of
https://github.com/casjaysdevdocker/super-productivity
synced 2026-09-04 02:03:00 -04:00
e8a76856cb4ace1fda88a199b22edb4346cee93b
AI.md is now the standardized application-image specification from claudemgr/docker/CASJAYSDEVDOCKER.md — PARTs 0–8 covering critical rules and org mapping, repo model, template system with the OCI label canon (image.url https://hub.docker.com/r/casjaysdevdocker/super-productivity), tooling reference, .env.scripts, runtime system, README layout, CI/CD, and verification gates. This replaces the old org-wide "Docker Container Repository Specification," whose stale OCI canon (base.name, schema-version, duplicate source labels) was superseded; the bootstrap/update runbook lives in the dockersrc-bootstrap agent. - AI.md: replaced with the CASJAYSDEVDOCKER.md master template
👋 Welcome to super-productivity 🚀
super-productivity 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 super-productivity
Install and run container
dockerHome="/srv/$USER/docker/casjaysdevdocker/super-productivity/latest/volumes"
mkdir -p "$dockerHome"
git clone "https://github.com/dockermgr/super-productivity" "$HOME/.local/share/CasjaysDev/dockermgr/super-productivity"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/super-productivity/volumes/." "$dockerHome/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-super-productivity-latest \
--hostname super-productivity \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$dockerHome/data:/data:z" \
-v "$dockerHome/config:/config:z" \
-p 80:80 \
casjaysdevdocker/super-productivity:latest
via docker-compose
services:
ProjectName:
image: casjaysdevdocker/super-productivity
container_name: casjaysdevdocker-super-productivity
environment:
- TZ=America/New_York
- HOSTNAME=super-productivity
volumes:
- "/srv/$USER/docker/casjaysdevdocker/super-productivity/latest/volumes/data:/data:z"
- "/srv/$USER/docker/casjaysdevdocker/super-productivity/latest/volumes/config:/config:z"
ports:
- 80:80
restart: always
Get source files
dockermgr download src casjaysdevdocker/super-productivity
OR
git clone "https://github.com/casjaysdevdocker/super-productivity" "$HOME/Projects/github/casjaysdevdocker/super-productivity"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/super-productivity"
buildx
Authors
Languages
Shell
97.2%
Dockerfile
2.8%