-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-dev.yml
More file actions
53 lines (48 loc) · 968 Bytes
/
docker-compose-dev.yml
File metadata and controls
53 lines (48 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
services:
django:
volumes:
- .:/app
ports:
- "8000:8000"
environment:
- NEO4j_PASSWORD=neo4j1234
- MYSQL_DATABASE=dp
- MYSQL_HOST=mysql
- MYSQL_PASSWORD=1234
- JWT_SECRET=secret
env_file:
- .env-s3
- .env-deepl
command: python3 manage.py runserver 0.0.0.0:8000
neo4j:
ports:
- "7474:7474"
- "7473:7473"
- "7687:7687"
volumes:
- ./neo4j-volume/data:/data
- ./neo4j-volume/logs:/logs
environment:
NEO4J_AUTH: neo4j/neo4j1234
mysql:
volumes:
- ./mysql-volume/mysql:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=1234
- MYSQL_DATABASE=dp
ports:
- "3306:3306"
redis:
ports:
- "6379:6379"
redis-insight:
ports:
- "5540:5540"
environment:
- HTTP_PORT=8001
- REDIS_URL=redis://redis:6379
celery:
env_file:
- .env-django
- .env-s3
- .env-deepl