Skip to content

Commit

Permalink
Merge pull request #321 from cpbinovo/fix-docker-readme-section
Browse files Browse the repository at this point in the history
fix ports in the docker commands in the readme
  • Loading branch information
langdal authored Sep 14, 2023
2 parents 59e669e + 3c3f0a4 commit 3f00f7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ npm run dev:app

```bash
docker build -t process-optimizer-frontend .
docker run --rm -it --name process-optimizer-frontend -p 3000:3000 --env API_URL=http://localhost:9090/v1.0 process-optimizer-frontend
docker run --rm -it --name process-optimizer-frontend -p 8080:80 --env API_URL=http://localhost:9090/v1.0 process-optimizer-frontend
```

## Run pre-built docker image

```bash
docker run -d -p3000:3000 --env API_URL=http://localhost:9090/v1.0 ghcr.io/boostv/process-optimizer-frontend:main
docker run -d -p 8080:80 --env API_URL=http://localhost:9090/v1.0 ghcr.io/boostv/process-optimizer-frontend:main
```

## Update OpenAPI client
Expand Down

0 comments on commit 3f00f7d

Please sign in to comment.