1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

include registry in image name

This commit is contained in:
Zach Dwiel
2018-09-18 14:36:17 +00:00
committed by zach dwiel
parent 0812a94fbd
commit 7c1f0dce4f

View File

@@ -45,7 +45,7 @@ run_rollout_worker: build
${DOCKER} run ${RUN_ARGUMENTS} -it ${IMAGE} python3 rl_coach/rollout_worker.py --preset CartPole_DQN_distributed
kubernetes: build push
kubectl run -i --tty --attach --image=${IMAGE} --restart=Never date -- python3 rl_coach/orchestrators/start_training.py --preset CartPole_DQN_distributed --image ${IMAGE}
kubectl run -i --tty --attach --image=${REGISTRY}${IMAGE} --restart=Never distributed-coach -- python3 rl_coach/orchestrators/start_training.py --preset CartPole_DQN_distributed --image ${IMAGE}
push: build
${DOCKER} tag ${IMAGE} ${REGISTRY}${IMAGE}