mirror of
https://github.com/dockersrc/ubuntu
synced 2025-02-21 12:36:49 -05:00
Some checks failed
ubuntu-20-04 / ubuntu-20-04 (push) Failing after 1m56s
ubuntu-22-04 / ubuntu-22-04 (push) Successful in 2h28m26s
ubuntu-24-04 / ubuntu-24-04 (push) Failing after 3h0m56s
ubuntu-18-04 / ubuntu-18-04 (push) Failing after 3h3m8s
ubuntu-24-10 / ubuntu-24-10 (push) Failing after 3h11m0s
ubuntu-latest / ubuntu-latest (push) Failing after 3h3m17s
Dockerfile Dockerfile.18.04 Dockerfile.20.04 Dockerfile.22.04 Dockerfile.24.04 Dockerfile.24.10 .env.scripts .env.scripts.18.04 .env.scripts.20.04 .env.scripts.22.04 .env.scripts.24.04 .env.scripts.24.10 rootfs/usr/local/etc/docker/functions/entrypoint.sh rootfs/usr/local/share/template-files/config/env/default.sample
👋 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/rootfs/." "/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
Description
Languages
Shell
90.6%
Dockerfile
9.4%