Fix Redis config path
This commit is contained in:
parent
deb89e9202
commit
78f3f4520d
|
@ -8,3 +8,4 @@ env/
|
||||||
venv/
|
venv/
|
||||||
.idea/
|
.idea/
|
||||||
.env
|
.env
|
||||||
|
.bash_history
|
||||||
|
|
|
@ -2,7 +2,7 @@ version: "2"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: pathogen/threshold
|
image: pathogen/threshold:latest
|
||||||
build: ./docker
|
build: ./docker
|
||||||
volumes:
|
volumes:
|
||||||
- ${PORTAINER_GIT_DIR}:/code
|
- ${PORTAINER_GIT_DIR}:/code
|
||||||
|
@ -31,7 +31,7 @@ services:
|
||||||
image: redis
|
image: redis
|
||||||
command: redis-server /etc/redis.conf
|
command: redis-server /etc/redis.conf
|
||||||
volumes:
|
volumes:
|
||||||
- ./docker/redis.conf:/etc/redis.conf
|
- ${PORTAINER_GIT_DIR}/docker/redis.conf:/etc/redis.conf
|
||||||
volumes_from:
|
volumes_from:
|
||||||
- tmp
|
- tmp
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue