diff --git a/sh/create.sh b/sh/create.sh index 1939a59..0f5709e 100755 --- a/sh/create.sh +++ b/sh/create.sh @@ -5,8 +5,11 @@ CONTAINER="transfer_rs" API_PORT="10101" V_REFLECT="" +docker build -t "${IMAGE}" . --no-cache + + docker stop "${CONTAINER}" docker rm "${CONTAINER}" -echo docker run -it -p "${API_PORT}:${API_PORT}" --name "$CONTAINER" "${IMAGE}" \ No newline at end of file +docker run -it -p "${API_PORT}:${API_PORT}" --name "$CONTAINER" "${IMAGE}" \ No newline at end of file