diff --git a/.gitignore b/.gitignore index d7d1b97..0e45eef 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,4 @@ out/ # Custom .env +/pgadmin_data/ diff --git a/compose.dev.yaml b/compose.dev.yaml index 654065a..8c2ebf0 100644 --- a/compose.dev.yaml +++ b/compose.dev.yaml @@ -32,6 +32,17 @@ services: - /data - --console-address - :9001 + pgadmin: + image: dpage/pgadmin4:latest + container_name: pgadmin + environment: + PGADMIN_DEFAULT_EMAIL: admin@admin.com # Your login email + PGADMIN_DEFAULT_PASSWORD: root # Your login password + ports: + - "5555:80" + volumes: + - ./pgadmin_data:/var/lib/pgadmin # Persistent storage for pgAdmin settings + restart: always volumes: postgres-data: minio-data: