We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e75a895 commit 05e9d71Copy full SHA for 05e9d71
.github/workflows/main.yaml
@@ -273,7 +273,10 @@ jobs:
273
. 2>&1 | while IFS= read -r line; do log "$line"; done
274
275
log "Running Docker image in detached mode..."
276
- docker run -d --gpus all "$DOCKER_IMAGE_NAME" 2>&1 | while IFS= read -r line; do log "$line"; done
+ docker run -d \
277
+ -v $HOME/logs:/src/logs \
278
+ --gpus all \
279
+ --name "$DOCKER_IMAGE_NAME" 2>&1 | while IFS= read -r line; do log "$line"; done
280
281
log "✓ Cloud deployment done successfully"
282
0 commit comments