- change : Dockfile 不设置入口点ENTRYPOINT ,否则不能使用 -it 交互模式

This commit is contained in:
lamter 2017-04-27 13:07:30 +08:00
parent 473d98fd4f
commit 45d4301110
2 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,6 @@ RUN echo "开始配置系vnpy环境" \
&& apt-get clean \
&& echo "安装 ta-lib 内核" \
&& cd /opt \
# && wget -t 0 http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz \
&& wget -t 0 http://kent.dl.sourceforge.net/project/ta-lib/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz \
&& tar -zxvf ta-lib-0.4.0-src.tar.gz \
&& rm ta-lib-0.4.0-src.tar.gz \
@ -64,6 +63,7 @@ RUN echo "开始配置系vnpy环境" \
&& conda clean -ay \
&& echo "安装结束"
WORKDIR /srv/vnpy/vn.trader
WORKDIR /srv/vnpy
ENTRYPOINT python /srv/vnpy/vn.trader/vtServer.py
# 暂时不设置入口点,否则不能使用 -it 交互模式
# ENTRYPOINT python /srv/vnpy/vn.trader/vtServer.py

View File

@ -6,4 +6,4 @@ docker run --name vnpy --rm \
-v `pwd`/vn.trader/tmp/VT_setting.json:/etc/vnpy/VT_setting.json \
-p 2014:2014 -p 602:602 \
vnpy:latest \
--VT_setting /etc/vnpy/VT_setting.json
python /srv/vnpy/vn.trader/vtServer.py --VT_setting /etc/vnpy/VT_setting.json