Skip to content

Commit e39d604

Browse files
authored
fix: update README.md
This commit addresses potential confusion around a folder being created in the root of the repo, which is not the case. Volumes are created from the given docker-compose.yml. After 'docker compose up -d', the two volumes can be listed with the command 'docker volume ls': DRIVER VOLUME NAME local 1-dimensional-data-modeling_pgadmin-data local 1-dimensional-data-modeling_postgres-data
1 parent 2f2f026 commit e39d604

File tree

1 file changed

+3
-1
lines changed
  • bootcamp/materials/1-dimensional-data-modeling

1 file changed

+3
-1
lines changed

bootcamp/materials/1-dimensional-data-modeling/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ There are two methods to get Postgres running locally.
7777
docker compose up -d
7878
```
7979
80-
- A folder named **`postgres-data`** will be created in the root of the repo. The data backing your Postgres instance will be saved here.
80+
- Two volumes will be created:
81+
- **`1-dimensional-data-modeling_postgres-data`** The data backing your Postgres instance will be saved here.
82+
- **`1-dimensional-data-modeling_pgadmin-data`** The data backing your PGAdmin instance will be saved here.
8183
- You can check that your Docker Compose stack is running by either:
8284
- Going into Docker Desktop: you should see an entry there with a drop-down for each of the containers running in your Docker Compose stack.
8385
- Running **`docker ps -a`** and looking for the containers with the name **`postgres`**.

0 commit comments

Comments
 (0)