mirror of
https://github.com/luksamuk/engine-psx.git
synced 2025-04-28 13:28:02 +03:00
10 lines
207 B
Bash
Executable file
10 lines
207 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 \
|
|
sonicxa:latest \
|
|
/bin/bash
|