You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The easiest way to do it is to build a docker image and then run it. There's already a [ready-to-use Dockerfile](https://github.com/IDSaves/terminal-chat/blob/master/server/Dockerfile) so you just go with a `docker build -t <imagegame> .` inside a server's directory. After you built a docker image just type in docker run <imagename> -p <yourport>:8080.
6
+
The easiest way to do it is to build a docker image and then run it. There's already a [ready-to-use Dockerfile](https://github.com/IDSaves/terminal-chat/blob/master/server/Dockerfile) so you just go with a `docker build -t <imagename> .` inside a server's directory. After you built a docker image just type in `docker run <imagename> -p <your port>:8080`.
7
7
8
8
If you don't wanna use docker you can install the server's package directly on your computer by typing `cargo install`. Of course you will need to install Rust before you do it :).
The easiest way to do it is to build a docker image and then run it. There's already a [ready-to-use Dockerfile](https://github.com/IDSaves/terminal-chat/blob/master/server/Dockerfile) so you just go with a `docker build -t <imagegame> .` inside a server's directory. After you built a docker image just type in docker run <imagename> -p <yourport>:8080.
4
+
The easiest way to do it is to build a docker image and then run it. There's already a [ready-to-use Dockerfile](https://github.com/IDSaves/terminal-chat/blob/master/server/Dockerfile) so you just go with a `docker build -t <imagename> .` inside a server's directory. After you built a docker image just type in `docker run <imagename> -p <your port>:8080`.
5
5
6
6
If you don't wanna use docker you can install the server's package directly on your computer by typing `cargo install`. Of course you will need to install Rust before you do it :).
0 commit comments