mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-05-14 20:58:03 +00:00
11 lines
357 B
Bash
Executable file
11 lines
357 B
Bash
Executable file
#!/bin/bash
|
|
# Launch an experiment using the docker cpu image
|
|
|
|
cmd_line="$@"
|
|
|
|
echo "Executing in the docker (cpu image):"
|
|
echo $cmd_line
|
|
|
|
docker run -it --rm --network host --ipc=host \
|
|
--mount src=$(pwd),target=/root/code/stable-baselines3,type=bind stablebaselines/stable-baselines3-cpu:latest \
|
|
bash -c "cd /root/code/stable-baselines3/ && $cmd_line"
|