I would like to ssh to my Postgres container and not only my primary app container.
How can I do that, CircleCi only offer me one IP on the web interface.
My job :
test:
resource_class: xlarge
working_directory: /usr/src/app/
docker:
- image: auchandirect/hive:${CIRCLE_SHA1}
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
environment:
DB: XX
DB_USER: X
DB_PASSWORD: XX
- image: postgres:10.1
environment:
POSTGRES_USER: XX
POSTGRES_DB: XX
POSTGRES_PASSWORD: XX

