generated from ytgov/vue-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.development.yaml
More file actions
76 lines (70 loc) · 1.47 KB
/
docker-compose.development.yaml
File metadata and controls
76 lines (70 loc) · 1.47 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
68
69
70
71
72
73
74
75
76
services:
web:
build:
context: ./src/web
dockerfile: development.Dockerfile
environment:
- NODE_ENV=development
tty: true
ports:
- "8080:8080"
volumes:
- ./src/web:/usr/src/web
depends_on:
- api
- db
api:
build:
context: ./src/api
dockerfile: development.Dockerfile
env_file:
- ./src/api/.env.development
environment:
NODE_ENV: development
tty: true
ports:
- "3000:3000"
volumes:
- ./src/api:/usr/src/api
- ./.gitignore:/usr/src/.gitignore
depends_on:
- db
- s3
- email
- converter
db:
image: mcr.microsoft.com/mssql/server:2019-CU32-GDR3-ubuntu-20.04
user: root
env_file:
- db/sqlserver.env
- db/sapassword.env
ports:
- "1433:1433"
volumes:
- ./db/data:/var/opt/mssql/data
- ./db/log:/var/opt/mssql/log
- ./db/backups:/var/opt/mssql/data/backups
s3:
image: "minio/minio:latest"
ports:
- "9000:9000"
- "9090:9090"
environment:
MINIO_ROOT_USER: "root"
MINIO_ROOT_PASSWORD: "password"
volumes:
- "s3storage:/data/minio"
command: minio server /data/minio --console-address ":9090"
email:
image: marcopas/docker-mailslurper
ports:
- 2500:2500
- 8081:8080
- 8085:8085
converter:
image: ghcr.io/icefoganalytics/pdf-converter:v2024.6.6.1
ports:
- 5000:5000
volumes:
db_data:
s3storage: