jason da5a8d0572
Build and Push 18.04 / build (push) Has been cancelled
Build and Push 20.04 / build (push) Has been cancelled
Build and Push 22.04 / build (push) Has been cancelled
Build and Push 24.04 / build (push) Has been cancelled
Build and Push 24.10 / build (push) Has been cancelled
Build and Push 26.04 / build (push) Has been cancelled
Build and Push / build (push) Has been cancelled
📝 Migrate /var/lib/srv docker paths to /srv in docs 📝
Update volume mount examples from /var/lib/srv/$USER/docker
to /srv/$USER/docker.
- README.md ubuntu/.dockerignore ubuntu/.gitattributes ubuntu/.gitea/workflows/build.yml ubuntu/.gitignore ubuntu/LICENSE.md ubuntu/rootfs/root/docker/setup/00-init.sh ubuntu/rootfs/root/docker/setup/01-system.sh ubuntu/rootfs/root/docker/setup/02-packages.sh ubuntu/rootfs/root/docker/setup/03-files.sh ubuntu/rootfs/root/docker/setup/04-users.sh ubuntu/rootfs/root/docker/setup/05-custom.sh ubuntu/rootfs/root/docker/setup/06-post.sh ubuntu/rootfs/root/docker/setup/07-cleanup.sh ubuntu/rootfs/usr/local/bin/copy ubuntu/rootfs/usr/local/bin/entrypoint.sh ubuntu/rootfs/usr/local/bin/healthcheck ubuntu/rootfs/usr/local/bin/pkmgr ubuntu/rootfs/usr/local/bin/symlink ubuntu/rootfs/usr/local/etc/docker/functions/entrypoint.sh : update path references to /srv/$USER/docker

README.md
ubuntu/.dockerignore
ubuntu/.gitattributes
ubuntu/.gitea/workflows/build.yml
ubuntu/.gitignore
ubuntu/LICENSE.md
ubuntu/rootfs/root/docker/setup/00-init.sh
ubuntu/rootfs/root/docker/setup/01-system.sh
ubuntu/rootfs/root/docker/setup/02-packages.sh
ubuntu/rootfs/root/docker/setup/03-files.sh
ubuntu/rootfs/root/docker/setup/04-users.sh
ubuntu/rootfs/root/docker/setup/05-custom.sh
ubuntu/rootfs/root/docker/setup/06-post.sh
ubuntu/rootfs/root/docker/setup/07-cleanup.sh
ubuntu/rootfs/usr/local/bin/copy
ubuntu/rootfs/usr/local/bin/entrypoint.sh
ubuntu/rootfs/usr/local/bin/healthcheck
ubuntu/rootfs/usr/local/bin/pkmgr
ubuntu/rootfs/usr/local/bin/symlink
ubuntu/rootfs/usr/local/etc/docker/functions/entrypoint.sh
2026-07-10 13:16:43 -04:00
2026-06-04 16:26:47 -04: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

👋 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 "/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/rootfs/." "/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 "/srv/root/docker/casjaysdev/ubuntu/latest/data:/data:z" \
-v "/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:
      - "/srv/root/docker/casjaysdev/ubuntu/latest/data:/data:z"
      - "/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

S
Description
Repo for docker-ubuntu
Readme 184 KiB
Languages
Shell 91.4%
Dockerfile 8.6%