FDSA Resources

Connect to Internal FDSA DB

The connection between the server and the docker Database is made through the Docker CLI.

  • You should check the following database credentials in the .env file

PGDATABASE='fdsa_appliance'

PGUSER='<user>'

PGPASSWORD='<password>'

PGPORT=<port>

  • Get inside the docker container:

docker exec -it fdsa_db bash

  • Connect to the database using the psql command:

psql -d <PGDATABASE> -U <PGUSER>