Merge pull request #49 from Thunderbottom/fix-docker
redis: revert mistakes
This commit is contained in:
commit
62c15cc2ac
@ -1,7 +1,7 @@
|
|||||||
version: '2'
|
version: '2'
|
||||||
services:
|
services:
|
||||||
mariadb:
|
mariadb:
|
||||||
image: "mariadb"
|
image: mariadb
|
||||||
environment:
|
environment:
|
||||||
- MYSQL_ROOT_PASSWORD=123
|
- MYSQL_ROOT_PASSWORD=123
|
||||||
- MYSQL_USER=root
|
- MYSQL_USER=root
|
||||||
@ -13,16 +13,35 @@ services:
|
|||||||
|
|
||||||
redis-cache:
|
redis-cache:
|
||||||
image: redis:alpine
|
image: redis:alpine
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- ./redis-conf/redis_cache.conf:/etc/conf.d/redis.conf
|
||||||
|
|
||||||
|
command: ["redis-server","/etc/conf.d/redis.conf"]
|
||||||
|
|
||||||
container_name: redis-cache
|
container_name: redis-cache
|
||||||
|
|
||||||
redis-queue:
|
redis-queue:
|
||||||
image: redis:alpine
|
image: redis:alpine
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- ./redis-conf/redis_queue.conf:/etc/conf.d/redis.conf
|
||||||
|
|
||||||
|
command: ["redis-server","/etc/conf.d/redis.conf"]
|
||||||
|
|
||||||
container_name: redis-queue
|
container_name: redis-queue
|
||||||
|
|
||||||
redis-socketio:
|
redis-socketio:
|
||||||
image: redis:alpine
|
image: redis:alpine
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- ./redis-conf/redis_socketio.conf:/etc/conf.d/redis.conf
|
||||||
|
|
||||||
|
command: ["redis-server","/etc/conf.d/redis.conf"]
|
||||||
|
|
||||||
container_name: redis-socketio
|
container_name: redis-socketio
|
||||||
|
|
||||||
|
|
||||||
frappe:
|
frappe:
|
||||||
volumes:
|
volumes:
|
||||||
- ./frappe-bench:/home/frappe/frappe-bench
|
- ./frappe-bench:/home/frappe/frappe-bench
|
||||||
|
Loading…
x
Reference in New Issue
Block a user