-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
45 lines (42 loc) · 804 Bytes
/
docker-compose.yaml
File metadata and controls
45 lines (42 loc) · 804 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
version: '3.6'
services:
ums:
container_name: ums
build:
context: ./ums/
dockerfile: Dockerfile
image: "ums:v1.0"
restart: always
environment:
TZ: Asia/Shanghai
networks:
- devops_net
service:
container_name: service
build:
context: ./service/
dockerfile: Dockerfile
image: "service:v1.0"
restart: always
environment:
TZ: Asia/Shanghai
networks:
- devops_net
configure:
container_name: configure
build:
context: ./configure/
dockerfile: Dockerfile
image: "configure:v1.0"
restart: always
ports:
- 8082:8082
volumes:
environment:
TZ: Asia/Shanghai
networks:
- devops_net
networks:
devops_net:
external:
name: drive_devops_net