-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
executable file
·59 lines (54 loc) · 1.2 KB
/
docker-compose.yml
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
version: '3.7'
services:
mongodb:
image: mongo
restart: unless-stopped
env_file: ./.env
environment:
- MONGO_INITDB_ROOT_USERNAME=$MONGODB_USER
- MONGO_INITDB_ROOT_PASSWORD=$MONGODB_PASSWORD
ports:
- $MONGODB_LOCAL_PORT:$MONGODB_DOCKER_PORT
volumes:
- db:/data/db
networks:
- backend
backend:
depends_on:
- mongodb
build: ./backend
image: dsmark/simplecurd_backend
restart: unless-stopped
env_file: ./.env
ports:
- $NODE_DOCKER_PORT:$NODE_LOCAL_PORT
environment:
- DB_HOST=mongodb
- DB_USER=$MONGODB_USER
- DB_PASSWORD=$MONGODB_PASSWORD
- DB_NAME=$MONGODB_DATABASE
- DB_PORT=$MONGODB_DOCKER_PORT
- CLIENT_ORIGIN=$CLIENT_ORIGIN
networks:
- backend
- frontend
frontend:
depends_on:
- backend
build:
context: ./frontend
args:
- VITE_APIS_URI=$CLIENT_API_BASE_URL
image: dsmark/simplecurd_frontend
ports:
- $VITE_DOCKER_PORT:$VITE_LOCAL_PORT
environment:
- VITE_DOCKER_PORT=${VITE_DOCKER_PORT}
- VITE_LOCAL_PORT=${VITE_LOCAL_PORT}
networks:
- frontend
volumes:
db:
networks:
frontend:
backend: