mirror of
https://github.com/casjaysdevdocker/python
synced 2025-12-01 04:14:09 -05:00
c842b61c2d6eb0ccb83b5e879e977747989de935
All checks were successful
python-3.10 / release-python-3_10 (push) Successful in 32m54s
python-3.11 / release-python-3_11 (push) Successful in 40m37s
python-3.12 / release-python-3_12 (push) Successful in 56m33s
python-3.13 / release-python-3_13 (push) Successful in 58m12s
python-3.9 / release-python-3_9 (push) Successful in 47m36s
python-3 / release-python-3 (push) Successful in 31m43s
release-tag / release-image (push) Successful in 32m17s
rootfs/usr/local/etc/docker/functions/entrypoint.sh
👋 Welcome to python 🚀
Description
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 python
Install and run container
mkdir -p "$HOME/.local/share/srv/docker/python/rootfs"
git clone "https://github.com/dockermgr/python" "$HOME/.local/share/CasjaysDev/dockermgr/python"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/python/rootfs/." "$HOME/.local/share/srv/docker/python/rootfs/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-python \
--hostname python \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-python/rootfs/data:/data:z" \
-v "$HOME/.local/share/srv/docker/casjaysdevdocker-python/rootfs/config:/config:z" \
-p 80:80 \
casjaysdevdocker/python:latest
via docker-compose
version: "2"
services:
ProjectName:
image: casjaysdevdocker/python
container_name: casjaysdevdocker-python
environment:
- TZ=America/New_York
- HOSTNAME=python
volumes:
- "$HOME/.local/share/srv/docker/casjaysdevdocker-python/rootfs/data:/data:z"
- "$HOME/.local/share/srv/docker/casjaysdevdocker-python/rootfs/config:/config:z"
ports:
- 80:80
restart: always
Get source files
dockermgr download src casjaysdevdocker/python
OR
git clone "https://github.com/casjaysdevdocker/python" "$HOME/Projects/github/casjaysdevdocker/python"
Build container
cd "$HOME/Projects/github/casjaysdevdocker/python"
buildx
Authors
Description
Languages
Shell
72.6%
Roff
20.5%
Dockerfile
6.9%