diff --git a/install/docker/Dockerfile b/install/docker/Dockerfile index 3c2eec5a..2382ee77 100644 --- a/install/docker/Dockerfile +++ b/install/docker/Dockerfile @@ -1,4 +1,4 @@ -# docker build -t ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.09.01 -f install/docker/Dockerfile . +# docker build -t ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.12.01 -f install/docker/Dockerfile . FROM ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:base diff --git a/install/docker/README.md b/install/docker/README.md index 586a44c6..6eca7f7d 100644 --- a/install/docker/README.md +++ b/install/docker/README.md @@ -27,7 +27,7 @@ mysql> flush privileges; docker build -t ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:base -f install/docker/Dockerfile-base . 使用基础镜像构建生产镜像 -docker build -t ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.09.01 -f install/docker/Dockerfile . +docker build -t ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.12.01 -f install/docker/Dockerfile . 构建frontend镜像 docker build -t ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:frontend-2022.09.01 -f install/docker/dockerFrontend/Dockerfile . @@ -35,7 +35,7 @@ docker build -t ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:frontend-2 ## 镜像拉取(如果你不参与开发可以直接使用线上镜像) ``` -docker pull ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.09.01 +docker pull ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.12.01 docker pull ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:frontend-2022.09.01 ``` diff --git a/install/docker/docker-compose.yml b/install/docker/docker-compose.yml index 63dac568..c65e8857 100644 --- a/install/docker/docker-compose.yml +++ b/install/docker/docker-compose.yml @@ -21,7 +21,7 @@ services: # - ./data/mysql:/var/lib/mysql frontend: - image: ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard-frontend:2022.09.01 + image: ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard-frontend:2022.12.01 restart: unless-stopped ports: - '80:80' @@ -31,7 +31,7 @@ services: - ../../install/docker/dockerFrontend/nginx.80.conf:/etc/nginx/conf.d/default.conf myapp: - image: ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.09.01 + image: ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.12.01 restart: always command: ['bash','-c','/entrypoint.sh'] environment: @@ -57,7 +57,7 @@ services: # beat: -# image: ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.09.01 +# image: ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.12.01 # restart: "no" # command: ["bash","-c","celery beat --app=myapp.tasks.celery_app:celery_app --loglevel=info"] # shm_size: '100gb' @@ -80,7 +80,7 @@ services: ## # # worker: -# image: ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.09.01 +# image: ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard:2022.12.01 # restart: unless-stopped # command: ["bash","-c","celery worker --app=myapp.tasks.celery_app:celery_app --loglevel=info --pool=prefork -Ofair -c 40"] # environment: diff --git a/install/docker/dockerFrontend/Dockerfile b/install/docker/dockerFrontend/Dockerfile index a0cf3c72..d59fe11a 100644 --- a/install/docker/dockerFrontend/Dockerfile +++ b/install/docker/dockerFrontend/Dockerfile @@ -1,4 +1,4 @@ -# docker build -t ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard-frontend:2022.09.01 -f install/docker/dockerFrontend/Dockerfile . +# docker build -t ccr.ccs.tencentyun.com/cube-studio/kubeflow-dashboard-frontend:2022.12.01 -f install/docker/dockerFrontend/Dockerfile . FROM nginx