Skip to content
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.

Commit

Permalink
update README to persist docker on reboot
Browse files Browse the repository at this point in the history
  • Loading branch information
kclejeune committed Oct 22, 2021
1 parent db0ecb3 commit 3529513
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: CI

on:
push:
branches: [master]
branches: [main, master]
tags:
- 'v*.*.*'
pull_request:
branches: [master]
branches: [main, master]
workflow_dispatch:

jobs:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ Currently implemented:

## Running the app

### Docker
### Docker

The easiest way to setup and run the app with minimal development knowledge is to use [Docker](https://www.docker.com/get-started).
The easiest way to setup and run the app with minimal development knowledge is to use [Docker](https://www.docker.com/get-started).
Follow the installation instructions from the website, and then run:

```bash
docker pull kclejeune/tmobile-isp-client:latest && docker run -p 3000:3000 -it kclejeune/tmobile-isp-client:latest
docker pull kclejeune/tmobile-isp-client:latest && docker run --restart unless-stopped -p 3000:3000 -it kclejeune/tmobile-isp-client:latest
```

You can view the app on `http://localhost:3000`. To run on a different port, set the `PORT` environment variable
You can view the app on `http://localhost:3000`. To run on a different port, set the `PORT` environment variable
and pass it to the container with the following command:

```bash
Expand Down

0 comments on commit 3529513

Please sign in to comment.