-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
52 lines (48 loc) · 1.1 KB
/
docker-compose.yml
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
# x-telegram-common: &telegram-common
# build:
# context: .
# dockerfile: Dockerfile
# target: development
# restart: unless-stopped
# env_file:
# - ./.env
# depends_on:
# rabbitmq:
# condition: service_healthy
# neo4j:
# condition: service_healthy
# mongodb:
# condition: service_healthy
# volumes:
# - ./:/usr/src/app/
services:
rabbitmq:
container_name: rabbitmq
image: rabbitmq:3.12.12-management
restart: unless-stopped
ports:
- 5672:5672
- 15672:15672
environment:
- RABBITMQ_DEFAULT_USER=guest
- RABBITMQ_DEFAULT_PASS=guest
healthcheck:
test: rabbitmq-diagnostics -q ping
interval: 1m30s
timeout: 10s
retries: 2
start_period: 30s
# telegram-bot:
# <<: [ *telegram-common ]
# container_name: telegram-bot
# command: npm run start:dev bot
question-service-ext:
image: ghcr.io/togethercrew/question-service:main
platform: linux/x86_64
ports:
- 9999:80
# volumes:
# mongo_data:
# neo4j_data:
# neo4j_import:
# neo4j_plugins: