Skip to content

Commit

Permalink
Change version to 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
cracrayol committed Aug 24, 2024
1 parent 18a33d3 commit 4d41afb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ Open your browser on http://localhost:3000.
Optional method for running a local website only to play the game
* Download and install [Docker](https://docs.docker.com/install/) and make sure it's is in your PATH environment variable
* Using a terminal (Linux or iOS) or PowerShell (Windows 10) navigate to the project's directory
* Type `docker build -t kai:1.16 .`
* Type `docker run -p 8080:8080 kai:1.16`
* Type `docker build -t kai:1.17 .`
* Type `docker run -p 8080:8080 kai:1.17`
* Open http://localhost:8080

More information about this method [here](./doc/README-docker.md)
Expand Down
8 changes: 4 additions & 4 deletions doc/README-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
Running Kai Chronicles inside a Docker cointainer configures and runs a local website for playing the game. If you intend to develop the game and are not familiar with Docker, then this method is not recommended.
* Download and install [Docker](https://docs.docker.com/install/) and make sure it's is in your PATH environment variable
* Using a terminal (Linux or iOS) or PowerShell (Windows 10) navigate to the project's directory
* Type `docker build -t kai:1.16 .` (including the `.`)
* Type `docker build -t kai:1.17 .` (including the `.`)
* The build command only needs to be run once.
* It takes awhile.
* Type `docker run -p 8080:8080 kai:1.16`
* If you want to access the site via a different port, change the *first* 8080 e.g. `docker run -p 5000:8080 kai:1.16`
* If you want to run the website independently of your terminal window (i.e. as a daemon), add a `-d` flag e.g. `docker run -d -p 8080:8080 kai:1.16`
* Type `docker run -p 8080:8080 kai:1.17`
* If you want to access the site via a different port, change the *first* 8080 e.g. `docker run -p 5000:8080 kai:1.17`
* If you want to run the website independently of your terminal window (i.e. as a daemon), add a `-d` flag e.g. `docker run -d -p 8080:8080 kai:1.17`
* If you try this command and you get some kind of 'conflicting port' error, then try a different port per instructions above.
* Open http://localhost:8080
* The server's ready message has incorrect URLs. Use the URL above, swapping in the correct port if you changed it.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kaichronicles",
"displayName": "Kai Chronicles",
"version": "1.16",
"version": "1.17",
"repository": {
"type": "git",
"url": "https://github.com/tonib/kaichronicles.git"
Expand Down

0 comments on commit 4d41afb

Please sign in to comment.