Skip to content

Commit 9a7bfa0

Browse files
committedJan 25, 2024
Redis UI eklendi.
1 parent 6457564 commit 9a7bfa0

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed
 

‎docker-compose.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ services:
4343
image: phpmyadmin:5.2.1
4444
container_name: ${PROJECT_NAME}-phpmyadmin
4545
ports:
46-
- 8080:80
46+
- "8080:80"
4747
environment:
4848
PMA_HOST: mysql
4949
PMA_ARBITRARY: 1
@@ -57,4 +57,13 @@ services:
5757
container_name: ${PROJECT_NAME}-redis
5858
command: redis-server
5959
ports:
60-
- "6379:6379"
60+
- "6379:6379"
61+
volumes:
62+
- /docker/redis:/data
63+
redisui:
64+
image: patrikx3/p3x-redis-ui:latest
65+
container_name: ${PROJECT_NAME}-redisui
66+
ports:
67+
- "7843:7843"
68+
volumes:
69+
- /docker/p3x-redis-ui-settings:/settings

0 commit comments

Comments
 (0)
Please sign in to comment.