-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dev.yml
55 lines (55 loc) · 1.03 KB
/
docker-compose-dev.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
services:
nginx:
container_name: nginx
restart: always
build:
context: ./nginx
dockerfile: Dockerfile.dev
ports:
- 3000:80
postgres:
container_name: postgres
image: postgres:14
restart: always
expose:
- 5432
env_file:
- .env.dev
api-ts:
container_name: api-ts
build:
context: ./api-ts
dockerfile: Dockerfile.dev
expose:
- 5000
env_file:
- .env.dev
volumes:
- /app/node_modules
- ./api-ts:/app
api-java:
container_name: api-java
build:
context: ./api-java
dockerfile: Dockerfile.dev
expose:
- 5000
env_file:
- .env.dev
api-python:
container_name: api-python
build:
context: ./api-python
dockerfile: Dockerfile.dev
expose:
- 8000
env_file:
- .env.dev
volumes:
- ./api-python:/app
web:
container_name: web
#image: kwangdock/portfolio-tech-stack-web
image: kwangdock/portfolio-tech-stack-web-dev
expose:
- 3000