lombardo/postgresql-exercises-docker
Dockerized PG instance containing the dataset from https://pgexercises.com/
58
A Dockerized version of the Postgres Database used by https://pgexercises.com/.
$ docker run -d -p 5432:5432 \
-e "POSTGRES_USER=postgres" \
-e "POSTGRES_PASSWORD=postgres" \
lombardo/postgresql-exercises-docker:0.0.1
$ psql -h localhost -p 5432 -U postgres -W exercises
exercises=# select * from cd.facilities;
https://hub.docker.com/r/lombardo/postgresql-exercises-docker/
cd
schema after every operation and recreate it, to allow for data modification exercisesThe original PostgreSQL Exercises website and dataset was made by Alisdair Owens under CC BY-SA 3.0.
docker pull lombardo/postgresql-exercises-docker