-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (41 loc) · 802 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
46 lines (41 loc) · 802 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
version: '3'
networks:
3lips:
services:
api:
restart: always
build:
context: .
dockerfile: ./api/Dockerfile
image: 3lips-api
ports:
- 49156:5000
networks:
- 3lips
volumes:
- ./config:/app/config
- ./common:/app/common
container_name: 3lips-api
event:
restart: always
build:
context: ./event
dockerfile: Dockerfile
image: 3lips-event
networks:
- 3lips
volumes:
- ./config:/app/config
- ./common:/app/common
- ./test:/app/test
- ./save:/app/save
container_name: 3lips-event
cesium-apache:
restart: always
build:
context: ./cesium
dockerfile: Dockerfile
image: cesium-apache
networks:
- 3lips
container_name: 3lips-cesium