-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (40 loc) · 864 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (40 loc) · 864 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
name: starpep-web-dev
services:
cache:
image: redis:7-alpine
restart: no
ports:
- 6379:6379
environment:
TZ: ${TIMEZONE}
queue:
image: rabbitmq:3-management
restart: no
ports:
- 5672:5672
- 15672:15672
volumes:
- ./rabbitmq:/var/lib/rabbitmq
environment:
TZ: ${TIMEZONE}
RABBITMQ_DEFAULT_USER: admin
RABBITMQ_DEFAULT_PASS: pass
neo4j:
image: ghcr.io/starpep-web/neo4j-db:${NEO4J_TAG}
restart: no
ports:
- 7687:7687
- 7474:7474
environment:
TZ: ${TIMEZONE}
NEO4J_AUTH: none
files:
image: ghcr.io/starpep-web/static-file-server:latest
restart: unless-stopped
ports:
- 10000:8080
volumes:
- ${STATIC_FILES_LOCATION}:/files:ro
- ./tmp_artifacts:/tmp/files:ro
environment:
TZ: ${TIMEZONE}