1

I want to deploy my app with Docker, but i don't have experience with postgresql and postgresql client images? Did anyone work with something similar?

I need some kind of client where I can see my database, tables and all the data, and I want to run everything with docker-compose.yml. If anyone has some .yml example with this setup also would be great.

Thx!

1 Answer 1

1

For example you can use phppgadmin

docker image for phppgadmin - https://hub.docker.com/r/zhajor/docker-phppgadmin/

docker-compose:

phpPgAdmin:
  container_name: phppgadmin
  image: fizix/docker-pgadmin:php-fpm-environment
  environment:
    - POSTGRESQL_HOST=postgres
    - POSTGRESQL_PORT=5432
    - POSTGRESQL_DEFAULT_DB=postgres
  ports:
    - 80:80
  links:
    - postgres
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.