mirror of
https://github.com/dockersrc/ubuntu
synced 2024-11-21 11:23:06 -05:00
Repo for docker-ubuntu
278f85bc80
Some checks failed
release-tag / release-image (push) Failing after 1h17m41s
rootfs/usr/local/bin/copy rootfs/usr/local/bin/symlink |
||
---|---|---|
.gitea/workflows | ||
rootfs | ||
.dockerignore | ||
.env.scripts | ||
.env.scripts.19.04 | ||
.env.scripts.20.04 | ||
.env.scripts.21.04 | ||
.env.scripts.22.04 | ||
.env.scripts.23.04 | ||
.env.scripts.23.10 | ||
.env.scripts.24.04 | ||
.env.scripts.24.10 | ||
.gitattributes | ||
.gitignore | ||
Dockerfile | ||
Dockerfile.19.04 | ||
Dockerfile.20.04 | ||
Dockerfile.21.04 | ||
Dockerfile.22.04 | ||
Dockerfile.23.04 | ||
Dockerfile.23.10 | ||
Dockerfile.24.04 | ||
Dockerfile.24.10 | ||
LICENSE.md | ||
README.md |
👋 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 ubuntu
Install and run container
mkdir -p "$HOME/.local/share/srv/docker/ubuntu/rootfs"
git clone "https://github.com/dockermgr/ubuntu" "$HOME/.local/share/CasjaysDev/dockermgr/ubuntu"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/ubuntu/rootfs/." "$HOME/.local/share/srv/docker/ubuntu/rootfs/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-ubuntu \
--hostname ubuntu \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-ubuntu/rootfs/data:/data:z" \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-ubuntu/rootfs/config:/config:z" \
-p 80:80 \
casjaysdevdocker/ubuntu:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdevdocker/ubuntu
container_name: casjaysdevdocker-ubuntu
environment:
- TZ=America/New_York
- HOSTNAME=ubuntu
volumes:
- "$HOME/.local/share/srv/docker/casjaysdevdocker-ubuntu/rootfs/data:/data:z"
- "$HOME/.local/share/srv/docker/casjaysdevdocker-ubuntu/rootfs/config:/config:z"
ports:
- 80:80
restart: always
Get source files
dockermgr download src casjaysdevdocker/ubuntu
OR
git clone "https://github.com/casjaysdevdocker/ubuntu" "$HOME/Projects/github/casjaysdevdocker/ubuntu"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/ubuntu"
buildx