mirror of
https://github.com/fergalmoran/deepsouthsounds.git
synced 2025-12-22 09:52:27 +00:00
10 lines
260 B
Bash
Executable File
10 lines
260 B
Bash
Executable File
#!/usr/bin/env bash
|
|
docker run \
|
|
--name dss-pgsql \
|
|
--restart always \
|
|
-p 5432:5432 \
|
|
-e "POSTGRES_PASSWORD=H8ckMyB88lz" \
|
|
-e "PGDATA=/var/lib/postgresql/data/pgdata" \
|
|
-v /opt/postgres:/var/lib/postgresql/data \
|
|
-d postgres:9.6.18
|