Skip to content

Commit

Permalink
added docker image setup docs in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMohit2003 committed Apr 22, 2024
1 parent 934d75c commit ee9b1bb
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,39 @@ Then, complete the information in your .env file with the firebase information,
npm run serve
```




## Docker Setup



### Building the Docker Image

To build the Docker image for UX Remote LAB, navigate to the project's root directory and run the following command:

```bash
docker build -t uxremotelab .
```

### Running the Application using Docker

After building the image, you can run the application in a Docker container using:


Note: Ensure you have created the .env file and filled it with all required variables before running the following command:


```bash
docker run -d --env-file .env -p 5000:5000 uxremotelab
```

Visit `http://localhost:5000` in your browser to access the UX Remote LAB platform.





## License

MIT © [UX Remote LAB](https://github.com/uramakilab/remote-usability-lab)

0 comments on commit ee9b1bb

Please sign in to comment.