added redis
This commit is contained in:
parent
10c0247f3c
commit
2b5fd4843a
@ -1,13 +1,23 @@
|
|||||||
version: '2'
|
version: '2'
|
||||||
services:
|
services:
|
||||||
neo4j:
|
neo4j:
|
||||||
image: docker.io/bitnami/neo4j:latest
|
image: bitnami/neo4j:latest
|
||||||
ports:
|
ports:
|
||||||
- '7474:7474'
|
- '7474:7474'
|
||||||
- '7473:7473'
|
- '7473:7473'
|
||||||
- '7687:7687'
|
- '7687:7687'
|
||||||
volumes:
|
volumes:
|
||||||
- 'neo4j_data:/bitnami'
|
- 'neo4j_data:/bitnami'
|
||||||
|
redis:
|
||||||
|
image: 'bitnami/redis:latest'
|
||||||
|
environment:
|
||||||
|
- REDIS_PASSWORD=password123
|
||||||
|
ports:
|
||||||
|
- '6379:6379'
|
||||||
|
volumes:
|
||||||
|
- 'redis_data:/bitnami'
|
||||||
volumes:
|
volumes:
|
||||||
neo4j_data:
|
neo4j_data:
|
||||||
driver: local
|
driver: local
|
||||||
|
redis_data:
|
||||||
|
driver: local
|
||||||
|
Reference in New Issue
Block a user