-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (43 loc) · 858 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (43 loc) · 858 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
version: "3"
services:
db:
image: mongo:latest
ports:
- "27017:27017"
volumes:
- ./mongo-data_prod:/data/db
# api:
# build:
# context: ./
# dockerfile: ./Dockerfile.api
# ports:
# - "4000:4000"
# volumes:
# - ./:/home/node/bookingeek
# app:
# build:
# context: ./
# dockerfile: ./Dockerfile.app
# ports:
# - "5173:5173"
# volumes:
# - ./:/home/node/bookingeek
# storybook:
# build:
# context: ./
# dockerfile: ./Dockerfile.storybook
# ports:
# - "6006:6006"
# volumes:
# - ./:/home/node/bookingeek
# website:
# build:
# context: ./
# dockerfile: ./Dockerfile.website
# ports:
# - "3000:3000"
# volumes:
# - ./:/home/node/bookingeek
volumes:
mongo-data_prod:
external: false