Repo for docker-alpine https://casjay.work/dockersrc/alpine
Go to file
casjay 0d62f4478d
Some checks failed
alpine-3-14 / alpine-3-14 (push) Successful in 31m32s
alpine-3-15 / alpine-3-15 (push) Successful in 16m30s
alpine-3-17 / alpine-3-17 (push) Successful in 22m59s
alpine-3-16 / alpine-3-16 (push) Successful in 24m47s
alpine-3-19 / alpine-3-19 (push) Successful in 21m17s
alpine-3-18 / alpine-3-18 (push) Successful in 22m10s
alpine-3-20 / alpine-3-20 (push) Failing after 2m41s
alpine-edge / alpine-edge (push) Successful in 12m18s
alpine-latest / alpine-latest (push) Successful in 12m17s
alpine-3-21 / alpine-3-20 (push) Successful in 13m47s
🗃️ Committing everything that changed 🗃️
.gitea/workflows/docker.3.14.yaml
.gitea/workflows/docker.3.15.yaml
.gitea/workflows/docker.3.16.yaml
.gitea/workflows/docker.3.17.yaml
.gitea/workflows/docker.3.18.yaml
.gitea/workflows/docker.3.19.yaml
.gitea/workflows/docker.3.20.yaml
.gitea/workflows/docker.3.21.yaml
.gitea/workflows/docker.edge.yaml
.gitea/workflows/docker.yaml
2024-12-16 08:31:55 -05:00
.gitea/workflows 🗃️ Committing everything that changed 🗃️ 2024-12-16 08:31:55 -05:00
rootfs 🗃️ Committing everything that changed 🗃️ 2024-09-24 11:04:21 -04:00
.dockerignore 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-10 17:36:46 -04:00
.env.scripts 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:20:57 -04:00
.env.scripts.3.14 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:22:22 -04:00
.env.scripts.3.15 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:22:22 -04:00
.env.scripts.3.16 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:22:22 -04:00
.env.scripts.3.17 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:22:22 -04:00
.env.scripts.3.18 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:22:22 -04:00
.env.scripts.3.19 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:22:22 -04:00
.env.scripts.3.20 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:22:22 -04:00
.env.scripts.3.21 🗃️ Committing everything that changed 🗃️ 2024-12-16 07:53:30 -05:00
.env.scripts.edge 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:22:22 -04:00
.gitattributes 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-10 17:36:46 -04:00
.gitignore 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-10 17:36:46 -04:00
Dockerfile 🗃️ Committing everything that changed 🗃️ 2024-10-13 08:36:10 -04:00
Dockerfile.3.14 🗃️ Committing everything that changed 🗃️ 2024-10-13 08:36:10 -04:00
Dockerfile.3.15 🗃️ Committing everything that changed 🗃️ 2024-10-13 08:36:10 -04:00
Dockerfile.3.16 🗃️ Committing everything that changed 🗃️ 2024-10-13 08:36:10 -04:00
Dockerfile.3.17 🗃️ Committing everything that changed 🗃️ 2024-10-13 08:36:10 -04:00
Dockerfile.3.18 🗃️ Committing everything that changed 🗃️ 2024-10-13 08:36:10 -04:00
Dockerfile.3.19 🗃️ Committing everything that changed 🗃️ 2024-10-13 08:36:10 -04:00
Dockerfile.3.20 🗃️ Committing everything that changed 🗃️ 2024-10-13 08:36:10 -04:00
Dockerfile.3.21 🗃️ Committing everything that changed 🗃️ 2024-12-16 07:53:30 -05:00
Dockerfile.edge 🗃️ Committing everything that changed 🗃️ 2024-10-13 08:36:10 -04:00
LICENSE.md 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-10 17:36:46 -04:00
README.md 🗃️ Committing everything that changed 🗃️ 2024-10-12 16:22:22 -04:00

👋 Welcome to alpine 🚀

alpine 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 alpine

Install and run container

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

via docker-compose

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

Get source files

dockermgr download src os alpine

Build container

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

Authors

🤖 casjay: Github 🤖
casjaysdev: Github Docker