Skip to content
xanxer6rB edited this page Dec 7, 2023 · 15 revisions

Directions here to use a docker container to play Forge:

First clone https://github.com/xanxer6rB/forge-kasm or download as a zip and extract it in a chosen location

To create the image

Open a terminal within either forge-kasmVNC or forge-kasmVNC-alpine directory and run:

docker build -t forge-kasm .

To run the container

After the image is built run:

docker run -it -p 3000:3000 forge-kasm bash

To run the container detatched running in the background

docker run -d -it -p 3000:3000 forge-kasm bash

To Access container

After the container is running, access container at YOUR-IP:3000, localhost:3000 in your web browser. After accessing the container in your browser run one of the following commands:

  - To play forge-gui-dekstop: bash /forge.sh
  
  - To play forge-adventure: bash /forge-adventure.sh
  - To use forge-adventure-editor: bash /forge-adventure-editor.sh

  - To remove forge directory: bash /remove-forge.sh

  - To update forge: bash /update-forge.sh

Potentially in the future we can have one for developing Forge.

Clone this wiki locally