🗃️ Committing everything that changed 🗃️

This commit is contained in:
casjay
2023-02-23 23:38:31 -05:00
parent b10c2c4167
commit f60b5e55e5
63 changed files with 437 additions and 384 deletions

10
scripts/pgsql.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
mkdir -p /var/lib/docker/storage/postgres &&
chmod -Rf 777 /var/lib/docker/storage/postgres
docker run -d \
--name postgres \
--restart=always \
-p 5432:5432 \
-v /var/lib/docker/storage/postgres:/var/lib/postgresql/data \
registry.casjay.in/latest/postgres:latest