mirror of
https://github.com/luksamuk/engine-psx.git
synced 2025-04-28 05:18:01 +03:00
10 lines
221 B
Bash
Executable file
10 lines
221 B
Bash
Executable file
#!/bin/bash
|
|
|
|
exec docker run -it --rm \
|
|
-v $(pwd):/source \
|
|
-v $(pwd):$(pwd) \
|
|
-w /source \
|
|
--network=host \
|
|
--add-host localhost:host-gateway \
|
|
luksamuk/psxtoolchain:latest \
|
|
/bin/bash
|