-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
62 lines (53 loc) · 1.1 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
60
61
62
version: "3.7"
services:
blog_api:
image: kevcoxe/simple-flask-app
container_name: blog_api
restart: always
environment:
- PORT=5000
expose:
- 5000
ports:
- "5000:5000"
# new_blog_frontend_react:
# build: ./new-blog-frontend
# container_name: new-blog-frontend-react
# restart: always
# expose:
# - 3000
# ports:
# - "3000:3000"
# nginx:
# build: ./nginx
# container_name: nginx_for_blog
# restart: always
# ports:
# - "80:80"
# volumes:
# - 'blogshare:/shared'
# product_api:
# build: ./product_api
# container_name: product_api
# restart: always
# environment:
# - APP_NAME=ProductApi
# expose:
# - 8000
# costomer_api:
# build: ./costomer_api
# container_name: costomer_api
# restart: always
# environment:
# - APP_NAME=CostomerApi
# expose:
# - 8000
# nginx-react:
# build: ./nginx-react
# container_name: nginx-react
# restart: always
# ports:
# - "80:80"
# volumes:
# blogshare:
# driver: local