Go to file
casjay 8df1d052d2
🗃️ Committing everything that changed 🗃️
.gitea/workflows/docker.2.yaml
.gitea/workflows/docker.3.yaml
2024-09-25 07:30:42 -04:00
.gitea/workflows 🗃️ Committing everything that changed 🗃️ 2024-09-25 07:30:42 -04:00
rootfs 🗃️ Committing everything that changed 🗃️ 2024-09-24 11:04:03 -04:00
.dockerignore 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-13 19:41:07 -04:00
.env.scripts 🗃️ Committing everything that changed 🗃️ 2024-09-25 07:27:01 -04:00
.env.scripts.2 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-13 19:41:07 -04:00
.env.scripts.3 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-13 19:41:07 -04:00
.gitattributes 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-13 19:41:07 -04:00
.gitignore 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-13 19:41:07 -04:00
Dockerfile 🗃️ Committing everything that changed 🗃️ 2024-09-25 07:27:01 -04:00
Dockerfile.2 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-13 19:41:07 -04:00
Dockerfile.3 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-13 19:41:07 -04:00
LICENSE.md 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-13 19:41:07 -04:00
README.md 🦈🏠🐜 Initial Commit 🐜🦈🏠 2024-08-13 19:41:07 -04:00

👋 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

🤖 casjay: Github 🤖
casjaysdevdocker: Github Docker