Last active
December 24, 2019 10:29
-
-
Save jribal/8e73ff1e41aa54a9032f965d82706bf3 to your computer and use it in GitHub Desktop.
RetroArch web player basic host installation script on docker nginx(ubuntu)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /usr/share/nginx/html | |
rm -r * | |
apt-get update && apt-get -y install wget nano git-core curl build-essential openssl libssl-dev python p7zip unzip | |
wget https://buildbot.libretro.com/nightly/emscripten/$(date +%Y-%m-%d -d "1 day ago")_RetroArch.7z | |
p7zip -d $(date +%Y-%m-%d -d "1 day ago")_RetroArch.7z | |
mkdir -p assets/frontend/bundle | |
mkdir -p assets/cores | |
chmod +x indexer | |
cd assets/frontend/bundle | |
wget https://buildbot.libretro.com/assets/frontend/bundle.zip | |
unzip bundle.zip | |
cd /usr/share/nginx/html | |
### coffee installation | |
git clone https://github.com/nodejs/node.git && cd node | |
./configure | |
make -j4 | |
make install | |
npm install -g coffee-script | |
cd /usr/share/nginx/html/assets/frontend/bundle | |
../../../indexer > .index-xhr | |
cd /usr/share/nginx/html/assets/cores | |
../../indexer > .index-xhr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I don't follow this project anymore.
Last time I checked there was some missing cores but now It seems like the cores are included in the 7z file.
This guy has a few working container for retroarch retroach-web
You have to select a core and press RUN.
Be careful all the cores don't work and firefox does not play as nicely as chrome for me.