···53535454#### `db` service for persistent use
55555656-The `db` service has persistent storage on the host machine managed by Docker under a volume named `pg_atp_db`. When the container is removed, data in the database will remain on the host machine. In order to start fresh, you would need to remove the volume.
5656+The `db` service has persistent storage on the host machine managed by Docker under a volume named `pg_plc_db`. When the container is removed, data in the database will remain on the host machine. In order to start fresh, you would need to remove the volume.
57575858This service runs on port `5432`.
5959···6161$ docker compose up db -d # start container
6262$ docker compose stop db # stop container
6363$ docker compose rm db # remove container
6464-$ docker volume rm pg_atp_db # remove volume
6464+$ docker volume rm pg_plc_db # remove volume
6565```