-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
45 lines (45 loc) · 926 Bytes
/
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
version: "3"
services:
postgres:
container_name: postgres
restart: always
build: db/
environment:
POSTGRES_DB: calorie
POSTGRES_USER: azizbek
POSTGRES_PASSWORD: 12345
TZ: Asia/Tashkent
ports:
- 5433:5432
volumes:
- ./db/data:/var/lib/postgresql/data
api:
container_name: api
build:
dockerfile: Dockerfile.dev
context: "./server"
volumes:
- /app/node_modules
- ./server:/app
environment:
DB_HOST: postgres
DB_USER: azizbek
DB_NAME: calorie
DB_PASSWORD: 12345
DB_PORT: 5432
depends_on:
- postgres
ports:
- 3000:3000
# client:
# container_name: client
# stdin_open: true
# build:
# dockerfile: Dockerfile.dev
# context: ./client
# volumes:
# - /app/node_modules
# - ./client:/app
# ports:
# - 8080:8080
# - 8081:8081