Files
commitment/README.md
T

80 lines
2.1 KiB
Markdown
Raw Normal View History

2025-09-16 09:09:32 -04:00
## 👋 Welcome to commitment_temp 🚀
2022-10-27 17:09:11 -04:00
2025-09-16 09:09:32 -04:00
commitment_temp README
2022-10-27 17:09:11 -04:00
## Install my system scripts
```shell
sudo bash -c "$(curl -q -LSsf "https://github.com/systemmgr/installer/raw/main/install.sh")"
sudo systemmgr --config && sudo systemmgr install scripts
```
2025-09-16 09:09:32 -04:00
## Automatic install/update
```shell
dockermgr update commitment_temp
```
## Install and run container
```shell
2026-05-05 14:34:41 -04:00
dockerHome="/var/lib/srv/$USER/docker/casjaysdevdocker/commitment_temp/commitment_temp/latest/volumes"
mkdir -p "/var/lib/srv/$USER/docker/commitment_temp/volumes"
2025-09-16 09:09:32 -04:00
git clone "https://github.com/dockermgr/commitment_temp" "$HOME/.local/share/CasjaysDev/dockermgr/commitment_temp"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/commitment_temp/rootfs/." "$dockerHome/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-commitment_temp-latest \
--hostname commitment_temp \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$dockerHome/data:/data:z" \
-v "$dockerHome/config:/config:z" \
-p 80:80 \
casjaysdevdocker/commitment_temp:latest
```
## via docker-compose
```yaml
version: "2"
services:
ProjectName:
image: casjaysdevdocker/commitment_temp
container_name: casjaysdevdocker-commitment_temp
environment:
- TZ=America/New_York
- HOSTNAME=commitment_temp
volumes:
2026-05-05 14:34:41 -04:00
- "/var/lib/srv/$USER/docker/casjaysdevdocker/commitment_temp/commitment_temp/latest/volumes/data:/data:z"
- "/var/lib/srv/$USER/docker/casjaysdevdocker/commitment_temp/commitment_temp/latest/volumes/config:/config:z"
2025-09-16 09:09:32 -04:00
ports:
- 80:80
restart: always
```
2022-10-27 17:09:11 -04:00
## Get source files
2025-09-16 09:09:32 -04:00
2022-10-27 17:09:11 -04:00
```shell
2025-09-16 09:09:32 -04:00
dockermgr download src casjaysdevdocker/commitment_temp
2022-10-27 17:09:11 -04:00
```
2025-09-16 09:09:32 -04:00
2022-10-27 17:09:11 -04:00
OR
2025-09-16 09:09:32 -04:00
2022-10-27 17:09:11 -04:00
```shell
2025-09-16 09:09:32 -04:00
git clone "https://github.com/casjaysdevdocker/commitment_temp" "$HOME/Projects/github/casjaysdevdocker/commitment_temp"
2022-10-27 17:09:11 -04:00
```
2025-09-16 09:09:32 -04:00
2022-10-27 17:09:11 -04:00
## Build container
2025-09-16 09:09:32 -04:00
2022-10-27 17:09:11 -04:00
```shell
2025-09-16 09:09:32 -04:00
cd "$HOME/Projects/github/casjaysdevdocker/commitment_temp"
2022-10-27 17:09:11 -04:00
buildx
```
2025-09-16 09:09:32 -04:00
2022-10-27 17:09:11 -04:00
## Authors
2025-09-16 09:09:32 -04:00
🤖 casjay: [Github](https://github.com/casjay) 🤖
⛵ casjaysdevdocker: [Github](https://github.com/casjaysdevdocker) [Docker](https://hub.docker.com/u/casjaysdevdocker) ⛵