This commit is contained in:
counterweight 2023-10-30 09:09:38 +01:00
parent 8f123c49b2
commit d078ee2e47
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
2 changed files with 8 additions and 2 deletions

View file

@ -75,3 +75,9 @@ aws s3 cp s3://dbtlearn/hosts.csv hosts.csv
How to put the data into the databases is up to you. I've done it successfully using the import functionality of DBeaver. How to put the data into the databases is up to you. I've done it successfully using the import functionality of DBeaver.
## Known issues
- Originally, the image `postgres:16` was used, but some locals had a quirky issue running it. The solution was to switch to `postgres:16

View file

@ -3,7 +3,7 @@ version: '3.5'
services: services:
postgres: postgres:
container_name: dbt_postgres container_name: dbt_postgres
image: postgres:16 image: postgres:16-alpine
environment: environment:
POSTGRES_USER: dbt_postgres_user POSTGRES_USER: dbt_postgres_user
POSTGRES_PASSWORD: dbt_postgres_password POSTGRES_PASSWORD: dbt_postgres_password
@ -18,7 +18,7 @@ services:
pgadmin: pgadmin:
container_name: pgadmin_container container_name: pgadmin_container
image: dpage/pgadmin4 image: dpage/pgadmin4:7.8
environment: environment:
PGADMIN_DEFAULT_EMAIL: pgadmin_user@email.com PGADMIN_DEFAULT_EMAIL: pgadmin_user@email.com
PGADMIN_DEFAULT_PASSWORD: pgadmin_password PGADMIN_DEFAULT_PASSWORD: pgadmin_password