Skip to content

Instantly share code, notes, and snippets.

@aurelioo29
Forked from Da9el00/docker-compose.yml
Created July 31, 2024 11:03
Show Gist options
  • Save aurelioo29/9b2f68fda4b8339bae2692e6fae6c82b to your computer and use it in GitHub Desktop.
Save aurelioo29/9b2f68fda4b8339bae2692e6fae6c82b to your computer and use it in GitHub Desktop.
How to create a docker-compose setup with PostgreSQL and pgAdmin4
version: "3.8"
services:
db:
container_name: postgres_container
image: postgres
restart: always
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: root
POSTGRES_DB: test_db
ports:
- "5432:5432"
pgadmin:
container_name: pgadmin4_container
image: dpage/pgadmin4
restart: always
environment:
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: root
ports:
- "5050:80"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment