casjay 9ee5b6ffea 🗃️ Updated workflows and moved rootfs 🗃️
Dockerfile
Dockerfile.18.04
Dockerfile.20.04
Dockerfile.22.04
Dockerfile.24.04
Dockerfile.24.10
dockerfs/
.gitea/workflows/docker.18.04.yaml
.gitea/workflows/docker.20.04.yaml
.gitea/workflows/docker.22.04.yaml
.gitea/workflows/docker.24.04.yaml
.gitea/workflows/docker.24.10.yaml
.gitea/workflows/docker.yaml
.github/
README.md
rootfs/root/docker/setup/00-init.sh
rootfs/root/docker/setup/01-system.sh
rootfs/root/docker/setup/02-packages.sh
rootfs/root/docker/setup/03-files.sh
rootfs/root/docker/setup/04-users.sh
rootfs/root/docker/setup/05-custom.sh
rootfs/root/docker/setup/06-post.sh
rootfs/root/docker/setup/07-cleanup.sh
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/bin/pkmgr
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/00-directory.sh
rootfs/usr/local/share/template-files/config/env/examples/addresses.sh
rootfs/usr/local/share/template-files/config/env/examples/certbot.sh
rootfs/usr/local/share/template-files/config/env/examples/couchdb.sh
rootfs/usr/local/share/template-files/config/env/examples/dockerd.sh
rootfs/usr/local/share/template-files/config/env/examples/global.sh
rootfs/usr/local/share/template-files/config/env/examples/healthcheck.sh
rootfs/usr/local/share/template-files/config/env/examples/mariadb.sh
rootfs/usr/local/share/template-files/config/env/examples/mongodb.sh
rootfs/usr/local/share/template-files/config/env/examples/networking.sh
rootfs/usr/local/share/template-files/config/env/examples/other.sh
rootfs/usr/local/share/template-files/config/env/examples/php.sh
rootfs/usr/local/share/template-files/config/env/examples/postgres.sh
rootfs/usr/local/share/template-files/config/env/examples/redis.sh
rootfs/usr/local/share/template-files/config/env/examples/services.sh
rootfs/usr/local/share/template-files/config/env/examples/ssl.sh
rootfs/usr/local/share/template-files/config/env/examples/supabase.sh
rootfs/usr/local/share/template-files/config/env/examples/webservers.sh
rootfs/usr/local/share/template-files/config/env/examples/zz-entrypoint.sh
rootfs/usr/local/share/template-files/config/.gitkeep
rootfs/usr/local/share/template-files/data/.gitkeep
rootfs/usr/local/share/template-files/defaults/.gitkeep
2026-01-15 23:48:09 -05:00
2026-01-15 23:48:09 -05:00
2026-01-15 23:48:09 -05:00
2026-01-15 23:48:09 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:50 -05:00
🗃️ Fixed rootfs/** files 🗃️
2025-11-29 11:56:17 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:50 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:50 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:50 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:50 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:50 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:50 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:50 -05:00
2026-01-15 23:48:09 -05:00
2026-01-15 23:48:09 -05:00
2026-01-15 23:48:09 -05:00
2026-01-15 23:48:09 -05:00
2026-01-15 23:48:09 -05:00
2026-01-15 23:48:09 -05:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-29 11:11:50 -05:00
2026-01-15 23:48:09 -05:00

👋 Welcome to ubuntu 🚀

ubuntu 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 os ubuntu

Install and run container

mkdir -p "/var/lib/srv/root/docker/casjaysdev/ubuntu/latest"
git clone "https://github.com/dockermgr/ubuntu" "$HOME/.local/share/CasjaysDev/dockermgr/ubuntu"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/ubuntu/dockerfs/." "/var/lib/srv/root/docker/casjaysdev/ubuntu/latest/"
docker run -d \
--restart always \
--privileged \
--name casjaysdev-ubuntu-latest \
--hostname ubuntu \
-e TZ=${TIMEZONE:-America/New_York} \
-v "/var/lib/srv/root/docker/casjaysdev/ubuntu/latest/data:/data:z" \
-v "/var/lib/srv/root/docker/casjaysdev/ubuntu/latest/config:/config:z" \
casjaysdev/ubuntu:latest

via docker-compose

version: "2"
services:
  ProjectName:
    image: casjaysdev/ubuntu
    container_name: casjaysdev-ubuntu-latest
    environment:
      - TZ=America/New_York
      - HOSTNAME=ubuntu
    volumes:
      - "/var/lib/srv/root/docker/casjaysdev/ubuntu/latest/data:/data:z"
      - "/var/lib/srv/root/docker/casjaysdev/ubuntu/latest/config:/config:z"
    restart: always

Get source files

dockermgr download src os ubuntu

Build container

git clone "https://github.com/dockersrc/ubuntu" "$HOME/Projects/github/dockersrc/ubuntu"
cd "$HOME/Projects/github/dockersrc/ubuntu" && buildx all 

Authors

🤖 casjay: Github 🤖
casjaysdev: Github Docker

Description
Languages
Shell 91.4%
Dockerfile 8.6%