feat(project): init
This commit is contained in:
13
redislocal/docker-compose.yml
Normal file
13
redislocal/docker-compose.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
services:
|
||||
redis:
|
||||
image: redis/redis-stack-server:latest
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
ports:
|
||||
- ${REDIS_PORT}:6379
|
||||
volumes:
|
||||
- ./data:/data
|
||||
- ./logs:/logs
|
||||
- ./redis.conf:/usr/local/etc/redis/redis.conf
|
||||
entrypoint: /bin/sh
|
||||
command: -c 'redis-server /usr/local/etc/redis/redis.conf'
|
||||
Reference in New Issue
Block a user