To start the Postgres instance using docker copy the example.env file and name it .env and fill out the environment
variables.
Run the command below to start the container:
docker compose -f storage/compose.yaml up -dTo test to see if the container was spun up correctly with the tables created use the psql command below, be sure to replace the environment variables:
psql -h localhost -U $DATABASE_USER -d $DATABASE_NAME -WOnce you have been connected run the command \dt to see the tables that were create for your database.
Once you are done you can run the \q command to terminate your connection.
Destroy the database with the docker command below:
docker compose -f storage/compose.yaml downcd database_handler
flask --app database_handler run
