Skip to content

Commit

Permalink
feat(docker): set container name (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickpiccini committed Jun 13, 2022
1 parent f62e054 commit a72705f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_docker_image.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

# This script is used to run the docker image. Change or remove GPU flag if you dont have nvidia-docker or the needed GPUs
docker run --rm -it -p 8888:8888 --gpus all -v "${PWD}":/workspace dalle-mini:latest
docker run --rm --name dallemini -it -p 8888:8888 --gpus all -v "${PWD}":/workspace dalle-mini:latest

0 comments on commit a72705f

Please sign in to comment.