Hello
can I connect to an external postgres database with a specific schema using docker-compose? The question concerns which ENV i can use.
For example, I have a postgres database test_base with the address 10.10.10.10 and there is a schema is jasper
This option will work?
environment:
- DB_TYPE=postgres
- DB_HOST=10.10.10.10
- DB_NAME=test_base
- DB_SCHEMA=jasper
- DB_PORT=5432
- DB_USER=postgres
- DB_PASSWORD=postgres
Hello
can I connect to an external postgres database with a specific schema using docker-compose? The question concerns which ENV i can use.
For example, I have a postgres database test_base with the address 10.10.10.10 and there is a schema is jasper
This option will work?
environment:
- DB_TYPE=postgres
- DB_HOST=10.10.10.10
- DB_NAME=test_base
- DB_SCHEMA=jasper
- DB_PORT=5432
- DB_USER=postgres
- DB_PASSWORD=postgres