Skip to content

Commit

Permalink
chore: add ports to docker run
Browse files Browse the repository at this point in the history
  • Loading branch information
domenicoblanco committed May 9, 2024
1 parent 0e4bcdc commit 6f2782f
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 @@ -13,11 +13,11 @@ The easiest is to use the image published in this repository or the Dockerfile a
In order to install the normalizer with the provided Dockerfile you need to clone this repository and `cd` into the cloned repo.
```
docker build --tag 'relational-normalizer' .
docker run -d --name 'web-relational-normalizer' 'relational-normalizer'
docker run -d --name 'web-relational-normalizer' -p 8080:8080 'relational-normalizer'
```
Or pulling the latest build image with
```
docker run -d --name 'web-relational-normalizer' ghcr.io/unict-dmi/web-relational-normalizer:main
docker run -d --name 'web-relational-normalizer' -p 8080:8080 ghcr.io/unict-dmi/web-relational-normalizer:main
```

### 💻 Local installation
Expand Down

0 comments on commit 6f2782f

Please sign in to comment.