generated from mramirid/vite-react-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
55 lines (51 loc) · 866 Bytes
/
docker-compose.yaml
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
services:
mongodb:
image: "mongo"
volumes:
- db:/data/db
env_file:
- ./cms/.env.production
ports:
- "27017:27017"
profiles:
- initial-run
- run
seed:
build:
context: ./cms
dockerfile: Dockerfile.seed
env_file:
- ./cms/.env.production
volumes:
- public_images:/app/public/images
depends_on:
- mongodb
profiles:
- initial-run
cms:
build: ./cms
volumes:
- public_images:/app/public/images
env_file:
- ./cms/.env.production
ports:
- "3000:3000"
depends_on:
- seed
profiles:
- initial-run
- run
client:
build: ./client
ports:
- "8080:80"
stdin_open: true
tty: true
depends_on:
- cms
profiles:
- initial-run
- run
volumes:
db:
public_images: