Skip to content

[Development] Running in Docker

Taran Gill edited this page Nov 28, 2019 · 4 revisions

After installing Docker for Windows, you'll have access to the Docker Quickstart Terminal.

Clone this project into c:/Users/Public on Windows (placing it anywhere else disables live reloading).

Open the Quickstart Terminal and change into the cloned directory (at the root, where the docker-compose.yml file is located).

Build a new system (server and client) with the following command:

$ docker-compose up --build

On Linux/Mac, you can go to https://localhost:5000 and https://localhost:3000 to access the server and client, respectively.

On Windows, you need to use your Docker Machine's IP. To do this, type the following command into the command prompt:

$ docker-machine ip

Use the address displayed in lieu of localhost.

Note that you NEED to include the "https://" at the front of your URL.

Clone this wiki locally