Skip to content

Commit

Permalink
fix ports in the docker commands in the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
cpbinovo committed Aug 25, 2023
1 parent a00a0fb commit 66a73da
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 80: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 -p80: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 66a73da

Please sign in to comment.