Skip to content

Commit

Permalink
added redis web ui for developer needs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkucherenko committed Oct 5, 2024
1 parent 3a03185 commit 81c7b94
Showing 1 changed file with 26 additions and 7 deletions.
33 changes: 26 additions & 7 deletions docker-compose.dev.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
services:
postiz-postgres:
image: postgres:14.5
# ref: https://hub.docker.com/_/postgres
image: postgres:17-alpine # 17.0
container_name: postiz-postgres
restart: always
environment:
Expand All @@ -13,8 +14,18 @@ services:
- 5432:5432
networks:
- postiz-network
postiz-redis:
# ref: https://hub.docker.com/_/redis
image: redis:7-alpine # 7.4.0
container_name: postiz-redis
restart: always
ports:
- 6379:6379
networks:
- postiz-network
postiz-pg-admin:
image: dpage/pgadmin4
# ref: https://hub.docker.com/r/dpage/pgadmin4/tags
image: dpage/pgadmin4:latest
container_name: postiz-pg-admin
restart: always
ports:
Expand All @@ -24,14 +35,22 @@ services:
PGADMIN_DEFAULT_PASSWORD: admin
networks:
- postiz-network
postiz-redis:
image: redis:7.2
container_name: postiz-redis
restart: always
postiz-redisinsight:
# ref: https://hub.docker.com/r/redis/redisinsight
image: redis/redisinsight:latest
container_name: postiz-redisinsight
links:
- postiz-redis
ports:
- 6379:6379
- "5540:5540"
volumes:
- redisinsight:/data
networks:
- postiz-network
restart: always

volumes:
redisinsight:
postgres-volume:
external: false

Expand Down

0 comments on commit 81c7b94

Please sign in to comment.