Update (#32)
This commit is contained in:
@@ -12,6 +12,9 @@ RUN apt-get install -y libicu-dev \
|
||||
&& docker-php-ext-configure intl \
|
||||
&& docker-php-ext-install intl
|
||||
|
||||
# redis
|
||||
RUN pecl install redis && docker-php-ext-enable redis
|
||||
|
||||
# pcov
|
||||
RUN pecl install pcov && docker-php-ext-enable pcov
|
||||
|
||||
|
||||
2
.docker/redis/.gitignore
vendored
Normal file
2
.docker/redis/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
||||
@@ -24,7 +24,7 @@ SESSION_LIFETIME=120
|
||||
|
||||
MEMCACHED_HOST=127.0.0.1
|
||||
|
||||
REDIS_HOST=127.0.0.1
|
||||
REDIS_HOST=redis
|
||||
REDIS_PASSWORD=null
|
||||
REDIS_PORT=6379
|
||||
|
||||
|
||||
13
README.md
13
README.md
@@ -5,12 +5,13 @@
|
||||
- PHP v8.2.x
|
||||
- MySQL v8.1
|
||||
- MariaDB v10.11
|
||||
- phpMyAdmin v5.2.1
|
||||
- Mailpit v1.8.4
|
||||
- Node.js v18.17.1
|
||||
- NPM v10.1.0
|
||||
- Yarn v1.22.19
|
||||
- Vite v4.4.9
|
||||
- phpMyAdmin v5.x
|
||||
- Mailpit v1.x
|
||||
- Node.js v18.x
|
||||
- NPM v10.x
|
||||
- Yarn v1.x
|
||||
- Vite v5.x
|
||||
- Redis v7.2.x
|
||||
|
||||
# Requirements
|
||||
- Stable version of [Docker](https://docs.docker.com/engine/install/)
|
||||
|
||||
@@ -97,3 +97,14 @@ services:
|
||||
ports:
|
||||
- 8025:8025
|
||||
- 1025:1025
|
||||
|
||||
####################################################################################################
|
||||
# Redis
|
||||
####################################################################################################
|
||||
redis:
|
||||
image: redis:latest
|
||||
command: redis-server --appendonly yes
|
||||
volumes:
|
||||
- .docker/redis/data:/data
|
||||
ports:
|
||||
- 6379:6379
|
||||
|
||||
Reference in New Issue
Block a user