blob: c2acfa025f036abebce0436a758c1ef55ca6f2a9 [file] [log] [blame]
# Use postgres/example user/password credentials
version: "3.1"
services:
db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: example
POSTGRES_DB: data_catalog
ports:
- 5432:5432
# To connect to the postgres database from the command line client, use:
# docker run -it --rm --network data-catalog_default postgres psql -h db -U postgres data_catalog
adminer:
image: adminer
restart: always
ports:
- 8080:8080