forked from Tucsky/aggr-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (36 loc) · 886 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (36 loc) · 886 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
version: '3.7'
services:
server:
container_name: aggr-server
image: significant-trades-server
build:
context: .
dockerfile: Dockerfile
args:
- WORKDIR=${WORKDIR}
volumes:
- ./${FILES_LOCATION}:${WORKDIR}/${FILES_LOCATION}
ports:
- ${PORT}:${PORT}
env_file:
- .env
restart: always
# influx:
# container_name: aggr-influx
# image: influxdb:1.8.10
# ports:
# - ${INFLUX_PORT}:${INFLUX_PORT}
# volumes:
# - ./${FILES_LOCATION}/influxdb:/var/lib/influxdb/
# restart: always
# chronograf:
# container_name: aggr-chronograf
# image: chronograf:latest
# volumes:
# - ${FILES_LOCATION}/chronograf:/var/lib/chronograf
# ports:
# - "8888:8888"
# links:
# - influx
# environment:
# - "INFLUXDB_URL=http://${INFLUX_HOST}:${INFLUX_PORT}"