File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -743,6 +743,21 @@ services:
743743 networks :
744744 - backend
745745
746+ # ## PHPRedisAdmin ################################################
747+ phpredisadmin :
748+ image : erikdubbelboer/phpredisadmin:latest
749+ environment :
750+ - ADMIN_USER=${REDIS_WEBUI_USERNAME}
751+ - ADMIN_PASS=${REDIS_WEBUI_PASSWORD}
752+ - REDIS_1_HOST=${REDIS_WEBUI_CONNECT_HOST}
753+ - REDIS_1_PORT=${REDIS_WEBUI_CONNECT_PORT}
754+ networks :
755+ - backend
756+ ports :
757+ - " ${REDIS_WEBUI_PORT}:80"
758+ depends_on :
759+ - redis
760+
746761# ## MongoWebUI ################################################
747762 mongo-webui :
748763 build :
Original file line number Diff line number Diff line change @@ -363,6 +363,13 @@ SOLR_DATAIMPORTHANDLER_MYSQL=false
363363### NETDATA ###############################################
364364NETDATA_PORT=19999
365365
366+ ### PHPREDISADMIN #########################################
367+ REDIS_WEBUI_USERNAME=laradock
368+ REDIS_WEBUI_PASSWORD=laradock
369+ REDIS_WEBUI_CONNECT_HOST=redis
370+ REDIS_WEBUI_CONNECT_PORT=6379
371+ REDIS_WEBUI_PORT=9987
372+
366373### MONGOWEBUI ###############################################
367374MONGO_WEBUI_PORT=3000
368375MONGO_WEBUI_ROOT_URL=http://localhost
You can’t perform that action at this time.
0 commit comments