Commit 0f0c09ca authored by 張益誠's avatar 張益誠

Initial commit

parents
FROM lwieske/java-8
#azul/zulu-openjdk:8
#ENV READER_HOST=192.168.50.104 READER_PORT=5084 INFLUXDB_HOST=http://192.168.5.205:8088 INFLUXDB_USR=root INFLUXDB_PAS=root
CP tag.jar /tmp/tag.jar
CMD java -jar /tmp/tag.jar
\ No newline at end of file
version: '2'
services:
influxdb:
image:
tutum/influxdb
ports:
- "8087:8083"
- "8088:8086"
enviroment:
- ADMIN_USER="root"
- INFLUXDB_INIT_PWD="root"
restart:
always
container_name:
test_DB
reader:
image:
etag-reader
environment:
- READER_HOST="192.168.50.104"
- READER_PORT="5084"
- INFLUXDB_HOST="http://192.168.5.205:8088"
- INFLUXDB_USR="root"
- INFLUXDB_PAS="root"
restart:
always
container_name:
Reader
\ No newline at end of file
File added
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment