-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
45 lines (41 loc) · 859 Bytes
/
docker-compose.yml
File metadata and controls
45 lines (41 loc) · 859 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
version: "3.9"
services:
app:
build:
context: .
dockerfile: Dockerfile
args:
BUILD_CONTEXT: application
#network_mode: host
ports:
- "3001:3000"
env_file:
- .env
volumes:
- './packages/application/src:/usr/src/app/packages/application/src'
depends_on:
- mongodb
mongodb:
container_name: filecoin-plus-mongodb
image: mongo:latest
restart: unless-stopped
ports:
- 27017:27017
#volumes:
# - mongo_data:/data/db
toggle:
image: wiremock/wiremock:3.8.0
ports:
- "8080:8080"
volumes:
- ./.docker/wiremock:/home/wiremock
entrypoint:
[
"/docker-entrypoint.sh",
"--global-response-templating",
"--local-response-templating",
"--verbose",
]
volumes:
# mongo_data:
rabbitmq_data: