-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
67 lines (62 loc) · 1.38 KB
/
docker-compose.yml
File metadata and controls
67 lines (62 loc) · 1.38 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
67
version: '3'
services:
mongo:
image: mongo:4.2
profiles:
- dev
- test
ports:
- 27017:27017
volumes:
- mongo-data:/data/db
command: mongod --quiet --logpath /dev/null
openapi-viewer:
image: koumoul/openapi-viewer:1
profiles:
- deps
ports:
- 5680:8080
sd:
image: koumoul/simple-directory:master
profiles:
- dev
- test
network_mode: host
environment:
- ADMINS=["superadmin@test.com","banchereau.tom@gmail.com","alban.mouton@koumoul.com"]
- PUBLIC_URL=http://localhost:7400/simple-directory
- MAILDEV_ACTIVE=true
- STORAGE_TYPE=file
- NUXT_BUILD_BLOCKING=false
- AUTHRATELIMIT_ATTEMPTS=200
- DEFAULT_MAX_CREATED_ORGS=10
volumes:
- ./test/resources/users.json:/webapp/data/users.json
- ./test/resources/organizations.json:/webapp/data/organizations.json
server:
build:
context: ./
dockerfile: Dockerfile-dev
profiles:
- dev
depends_on:
- mongo
- sd
network_mode: host
environment:
- DEBUG=workers:*,renderer:*
volumes:
- ./:/webapp
client:
build:
context: ./
dockerfile: Dockerfile-dev
profiles:
- dev
network_mode: host
volumes:
- ./:/webapp
entrypoint: ["node"]
command: ["/webapp/node_modules/.bin/nuxt"]
volumes:
mongo-data: