1234567891011121314151617181920212223 |
- # VERSION 1.0
- # pull:
- # test env: reg0.svicloud.com/app/wisecloud/cas/web:v0.1
- # pro env: reg1.svicloud.com/app/wisecloud/cas/web:v0.1
- # build:
- # test env: docker build -f Dockerfile_data -t reg0.svicloud.com/app/wisecloud/cas/web:v0.1 .
- # test env: docker build -f Dockerfile_data -t reg1.svicloud.com/app/wisecloud/cas/web:v0.1 .
- FROM registry.9418.club/os/svi-centos:latest
- MAINTAINER dongcj "dongchaojun@svi-tech.com.cn"
- ENV MODULE_HOME /opt/wisecloud/cas/cas_web
- # change path to app home
- WORKDIR ${MODULE_HOME}
- # startup
- CMD ./start.sh && tail -f nginx/log/*
|