This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
e621-sdk-go/docker-compose.old.yml
daskadse 8cf25e2ac9 added dockerfile and compose config (#1)
Co-authored-by: Patrick Kauls <patrick@kauls.xyz>
Reviewed-on: fenpaws/e621-to-graph#1
2023-06-22 09:12:43 +00:00

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