Files
debian/README.md
T
jason e844e447d1 ♻ Rename dockerfs to rootfs and update Dockerfiles ♻
- Renamed dockerfs/ directory tree to rootfs/ across all paths
- Updated Dockerfile and Dockerfile.10-13 to reference new rootfs path
- Added new copy and symlink helper scripts under rootfs/usr/local/bin
- Added template-files data and defaults .gitkeep placeholders
- Updated README.md to reflect the new directory structure

Dockerfile
Dockerfile.10
Dockerfile.11
Dockerfile.12
Dockerfile.13
dockerfs/root/docker/setup/00-init.sh
dockerfs/root/docker/setup/01-system.sh
dockerfs/root/docker/setup/02-packages.sh
dockerfs/root/docker/setup/03-files.sh
dockerfs/root/docker/setup/04-users.sh
dockerfs/root/docker/setup/05-custom.sh
dockerfs/root/docker/setup/06-post.sh
dockerfs/root/docker/setup/07-cleanup.sh
dockerfs/usr/local/bin/entrypoint.sh
dockerfs/usr/local/bin/pkmgr
dockerfs/usr/local/etc/docker/functions/entrypoint.sh
dockerfs/usr/local/share/template-files/config/env/default.sample
dockerfs/usr/local/share/template-files/config/env/examples/00-directory.sh
dockerfs/usr/local/share/template-files/config/env/examples/addresses.sh
dockerfs/usr/local/share/template-files/config/env/examples/certbot.sh
dockerfs/usr/local/share/template-files/config/env/examples/couchdb.sh
dockerfs/usr/local/share/template-files/config/env/examples/dockerd.sh
dockerfs/usr/local/share/template-files/config/env/examples/global.sh
dockerfs/usr/local/share/template-files/config/env/examples/healthcheck.sh
dockerfs/usr/local/share/template-files/config/env/examples/mariadb.sh
dockerfs/usr/local/share/template-files/config/env/examples/mongodb.sh
dockerfs/usr/local/share/template-files/config/env/examples/networking.sh
dockerfs/usr/local/share/template-files/config/env/examples/other.sh
dockerfs/usr/local/share/template-files/config/env/examples/php.sh
dockerfs/usr/local/share/template-files/config/env/examples/postgres.sh
dockerfs/usr/local/share/template-files/config/env/examples/redis.sh
dockerfs/usr/local/share/template-files/config/env/examples/services.sh
dockerfs/usr/local/share/template-files/config/env/examples/ssl.sh
dockerfs/usr/local/share/template-files/config/env/examples/supabase.sh
dockerfs/usr/local/share/template-files/config/env/examples/webservers.sh
dockerfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
dockerfs/usr/local/share/template-files/config/.gitkeep
dockerfs/usr/local/share/template-files/data/.gitkeep
dockerfs/usr/local/share/template-files/defaults/.gitkeep
README.md
rootfs/usr/local/bin/copy
rootfs/usr/local/bin/symlink
2026-05-05 14:31:59 -04:00

70 lines
1.8 KiB
Markdown

## 👋 Welcome to debian 🚀
debian README
## Install my system scripts
```shell
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
```shell
dockermgr update os debian
```
## Install and run container
```shell
mkdir -p "/var/lib/srv/root/docker/casjaysdev/debian/latest"
git clone "https://github.com/dockermgr/debian" "$HOME/.local/share/CasjaysDev/dockermgr/debian"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/debian/rootfs/." "/var/lib/srv/root/docker/casjaysdev/debian/latest/"
docker run -d \
--restart always \
--privileged \
--name casjaysdev-debian-latest \
--hostname debian \
-e TZ=${TIMEZONE:-America/New_York} \
-v "/var/lib/srv/root/docker/casjaysdev/debian/latest/data:/data:z" \
-v "/var/lib/srv/root/docker/casjaysdev/debian/latest/config:/config:z" \
casjaysdev/debian:latest
```
## via docker-compose
```yaml
version: "2"
services:
ProjectName:
image: casjaysdev/debian
container_name: casjaysdev-debian-latest
environment:
- TZ=America/New_York
- HOSTNAME=debian
volumes:
- "/var/lib/srv/root/docker/casjaysdev/debian/latest/data:/data:z"
- "/var/lib/srv/root/docker/casjaysdev/debian/latest/config:/config:z"
restart: always
```
## Get source files
```shell
dockermgr download src os debian
```
## Build container
```shell
git clone "https://github.com/dockersrc/debian" "$HOME/Projects/github/dockersrc/debian"
cd "$HOME/Projects/github/dockersrc/debian" && buildx all
```
## Authors
🤖 casjay: [Github](https://github.com/casjay) 🤖
⛵ casjaysdev: [Github](https://github.com/dockersrc) [Docker](https://hub.docker.com/u/casjaysdev) ⛵