-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose-azurite.yml
More file actions
66 lines (65 loc) · 1.55 KB
/
docker-compose-azurite.yml
File metadata and controls
66 lines (65 loc) · 1.55 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
# (c) Copyright 2025, SAP SE and ClearlyDefined contributors. Licensed under the MIT license.
# SPDX-License-Identifier: MIT
services:
web:
platform: linux/amd64
build:
context: ./website
dockerfile: DevDockerfile
ports:
- "3000:3000"
stdin_open: true
service:
platform: linux/amd64
build:
context: ./service
dockerfile: DevDockerfile
ports:
- "4000:4000"
- "9230:9229"
env_file: azurite_localdb.env
environment:
- LOGGER_LOG_TO_CONSOLE=true
entrypoint:
- "node"
- "--inspect=0.0.0.0:9229"
- "./bin/www"
links:
- clearlydefined_mongo_db
- crawler
- azurite
crawler:
platform: linux/amd64
build:
context: ./crawler
dockerfile: DevDockerfile
env_file: azurite_localdb.env
environment:
- CRAWLER_ECHO=true
ports:
- "5000:5000"
- "9229:9229"
entrypoint:
- "node"
- "--inspect=0.0.0.0:9229"
- "./index.js"
links:
- azurite
azurite:
image: "mcr.microsoft.com/azure-storage/azurite"
command: "azurite --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0 --skipApiVersionCheck"
ports:
- "10000:10000"
- "10001:10001"
- "10002:10002"
volumes:
- ./azurite_data:/data
clearlydefined_mongo_db:
image: "mongo:4.4.28"
#image: "mongo:5.0.6"
ports:
- "27017:27017"
clearlydefined_mongo_seed:
image: "clearlydefined/docker_dev_env_experiment_clearlydefined_mongo_seed"
links:
- clearlydefined_mongo_db