-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (45 loc) · 776 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
49 lines (45 loc) · 776 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
44
45
46
47
48
49
---
version: "1.0"
services:
db:
image: mydbimage
container_name: mydb
build:
context: ./DB
dockerfile: Dockerfile
restart:
always
ports:
- "3306:3306"
hive:
image : hiveimage
container_name: hive
build:
context: ./FakeHiveServer/aspnetapp
dockerfile: Dockerfile
restart:
always
ports:
- "11501:11501"
depends_on:
- db
- redis
server:
image : serverimage
container_name: server
build:
context: ./APIServer/aspnetapp
dockerfile: Dockerfile
restart:
always
ports:
- "11500:11500"
depends_on:
- db
redis:
image: redis
container_name: redis
restart:
always
ports:
- "6379:6379"