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