diff options
author | Valentin Popov <info@valentineus.link> | 2017-11-10 04:22:18 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2017-11-10 04:22:18 +0300 |
commit | 2213a0fa97bce0f930d3ca72f79f325b630f39d8 (patch) | |
tree | 12b1347c3f8c7dfad981a5352ba50049e11be142 | |
parent | bcea2089297221a685743de9cd407b8e544661e9 (diff) | |
download | mednafen-server-2213a0fa97bce0f930d3ca72f79f325b630f39d8.tar.xz mednafen-server-2213a0fa97bce0f930d3ca72f79f325b630f39d8.zip |
Many small fixes
-rw-r--r-- | README.md | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -14,15 +14,17 @@ section. After downloading the package, perform the installation: ```bash -# dpkg --install mednafen-server_*_amd64.deb +dpkg --install mednafen-server_*_amd64.deb ``` Starting the server: ```bash -# mednafen-server standard.conf +mednafen-server ./standard.conf ``` -An example of the configuration file is in the repository. +An example of the +[configuration file](standard.conf) +is in the repository. Detailed information is available on the [developer's website](https://mednafen.github.io/releases/#mednafen-server). @@ -30,12 +32,12 @@ Detailed information is available on the * Download the image: ```bash -$ docker pull valentineus/mednafen-server:latest +docker pull valentineus/mednafen-server:latest ``` * Start the container: ```bash -$ docker run --detach --restart=unless-stopped --publish 4046:4046 --name "mednafen-server" valentineus/mednafen-server +docker run --detach --restart=unless-stopped --publish 4046:4046 --name "mednafen-server" valentineus/mednafen-server ``` More information on the |