Docker image which provides a full Eressea installation to host a local game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
1.0 KiB

3 weeks ago
  1. # Eressea Docker
  2. To build the Docker Image call next command in the folder where `Dockerfile` is located:
  3. ```
  4. docker build \
  5. -t jacsid/eressea \
  6. --build-arg eressea_branch=develop \
  7. --build-arg echeck_branch=develop \
  8. .
  9. ```
  10. You can choose to build the image with [Eressea](https://github.com/eressea/server) **master** or **develop** branch.
  11. `EChecker` is currently under development. In the [GitHub Repository](https://github.com/eressea/echeck) only the master branch is available. Because this is the one, which is in active development, the Docker image uses the branch name **develop**.
  12. The older versions are available as Debian [package](https://packagecloud.io/enno/eressea). If you choose `echeck_branch=`**master** the image uses version 4.4.9
  13. ***But note: This version does not run with Debian. It fails with segmentation fault.***
  14. Hence you should bild the image with one of these options:
  15. * --build-arg eressea_branch=develop --build-arg echeck_branch=develop
  16. * --build-arg eressea_branch=master --build-arg echeck_branch=develop