Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Run a Postgres 13 container instance and create 'cpsdb' database.

Code Block
languagebash
sudo docker run -d \
	--name postgres-instance \
	-e POSTGRES_DB=cpsdb \
	-e POSTGRES_USER=cps \
	-e POSTGRES_PASSWORD=cps \
	postgres:13.0

...