Skip to content
This repository was archived by the owner on Nov 27, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
REDIS_DATA_PATH=/tmp
REDIS_PORT=6339
REDIS_PORT=6379
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
13 changes: 11 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
version: '3'
services:
redis:
image: ghcr.io/deck-app/redis:v6.2
volumes:
- '${REDIS_DATA_PATH}:/data'
- '${DATA_PATH_HOST}/data:/data'
ports:
- '${REDIS_PORT}:6379'

redis-commander:
image: rediscommander/redis-commander:latest
environment:
- 'REDIS_HOSTS=local:redis:6379'
ports:
- '${REDIS_COMMANDER_PORT}:8081'
depends_on:
- redis

volumes: {}
8 changes: 5 additions & 3 deletions settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# - "8.0"
# target:
# PHP_VERSION

# backend_ws:
# label:
# Laravel Version
Expand All @@ -43,7 +43,7 @@
# Enable PHP error reporting?
# type:
# checkbox
# hint: Check the box to display PHP errors
# hint: Check the box to display PHP errors
# target:
# DISPLAY_PHPERROR
# php_xdebug:
Expand All @@ -62,7 +62,7 @@
# hint: Incase you have a Laravel project already installed at the selected path
# target:
# LARAVEL_INSTALL

# mysql_version:
# label:
# MySQL version
Expand Down Expand Up @@ -100,3 +100,5 @@ system:
ports:
http:
REDIS_PORT
others:
- REDIS_COMMANDER_PORT