A postgres image populated with open source data for testing and learning purposes
363
A postrgresql database pre-populated for demo / teaching purposes.
Included datasets:
This image should not be used in production
Like a regular postgres image, this image accept the following ENV VAR but can be used without supplying any. In such a case, default values will be used
| var name | default value |
|---|---|
| POSTGRES_USER | some_user |
| POSTGRES_PASSWORD | some_password |
| POSTGRES_DB | some_db |
docker run -d -p 5432:5432 -e "POSTGRES_DB=the_name_of_db" -e "POSTGRES_PASSWORD=some_strong_password" -e "POSTGRES_USER=some_fancy_user_name" zar3bski/populated_postgres
version: '3.7'
services:
populated_db:
container_name: populated_db
image: zar3bski/populated_postgres
ports:
- 5432:5432
environment:
- POSTGRES_DB=the_name_of_db
- POSTGRES_PASSWORD=some_strong_password
- POSTGRES_USER=some_fancy_user_name
Content type
Image
Digest
Size
48 MB
Last updated
almost 7 years ago
docker pull zar3bski/populated_postgres