version: '2' services: neo4j: image: bitnami/neo4j:latest ports: - '7474:7474' - '7473:7473' - '7687:7687' volumes: - 'neo4j_data:/bitnami' redis: image: 'bitnami/redis:latest' environment: - REDIS_PASSWORD=password123 ports: - '6379:6379' volumes: - 'redis_data:/bitnami' volumes: neo4j_data: driver: local redis_data: driver: local