SoXX
802764092e
As mentioned in Issue #11, the folder structure got an overall as some file names Co-authored-by: Fenpaws <soxx@fenpa.ws> Reviewed-on: anthrove/e621-to-graph#14 Reviewed-by: Lennard Brinkhaus <lennard.brinkhaus@noreply.localhost> Co-authored-by: SoXX <fenpaws@noreply.localhost> Co-committed-by: SoXX <fenpaws@noreply.localhost>
24 lines
420 B
YAML
24 lines
420 B
YAML
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
|