5 lines
194 B
Bash
5 lines
194 B
Bash
#!/bin/bash
|
|
|
|
sudo docker rm postgres --force
|
|
sudo docker run -d -p5432:5432 -e POSTGRES_USER="tapit" -e POSTGRES_PASSWORD="secret-tapit-password" -e POSTGRES_DB="tapit" --name postgres postgres
|