To configure:
Copy '.env.prod.example' to '.env.prod' and modify POSTGRES_PASSWORD.
To run:
docker-compose up -dTo access the database:
psql -h IP_ADDRESS -p 5433 -U postgresTo backup the database:
pg_dump -h IP_ADDRESS -p 5433 -U postgres -d postgres > backup.sqlTo restore the database:
psql -h IP_ADDRESS -p 5433 -U postgres -d postgres < backup.sqlor
pg_restore -h IP_ADDRESS -p 5433 -U postgres -d postgres backup.sql