Setup admin for redis and psql in dev

This commit is contained in:
martelleur 2023-12-04 19:36:22 +01:00
parent 19699b4860
commit b9cf4d28f0

View File

@ -12,6 +12,14 @@ services:
ports: ports:
- "5432:5432" - "5432:5432"
pgadmin:
image: dpage/pgadmin4
environment:
- PGADMIN_DEFAULT_EMAIL=admin@admin.com
- PGADMIN_DEFAULT_PASSWORD=root
ports:
- "8001:80"
redis: redis:
image: bitnami/redis:latest image: bitnami/redis:latest
environment: environment:
@ -22,6 +30,13 @@ services:
ports: ports:
- "6379:6379" - "6379:6379"
redis-commander:
image: rediscommander/redis-commander
environment:
- REDIS_HOSTS=local:redis:6379
ports:
- "8002:8081"
volumes: volumes:
postgresql_data: postgresql_data:
driver: local driver: local