30 lines
850 B
Bash
Executable File
30 lines
850 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
|
|
echo '---------------------------------------------------------------'
|
|
|
|
|
|
podman pod create --name postgresql_pod -p 55432:5432 -p 50002:80
|
|
|
|
podman run --restart=unless-stopped \
|
|
--pod=postgresql_pod \
|
|
--name pgadmin4_dev \
|
|
-e 'PGADMIN_DEFAULT_EMAIL=birdhead76@gmail.com' \
|
|
-e 'PGADMIN_DEFAULT_PASSWORD=1813Bird!' \
|
|
-d docker.io/dpage/pgadmin4
|
|
|
|
podman run --pod=postgresql_pod \
|
|
-v /work/podman/postgresql/data:/var/lib/postgresql/data:Z \
|
|
-e POSTGRES_PASSWORD=scaps \
|
|
-e POSTGRES_USER=spacs \
|
|
--name postgresdb_dev \
|
|
-d docker.io/library/postgres
|
|
#-t ghcr.io/wg-easy/wg-easy:latest
|
|
|
|
|
|
|
|
echo '---------------------------------------------------------------'
|