mirror of
https://github.com/miawinter98/just-short-it.git
synced 2024-11-22 08:19:54 +00:00
fixed: missing port declarations in Readme examples
This commit is contained in:
parent
e53e516f0b
commit
8787a9c27f
|
@ -11,6 +11,7 @@ The most KISS single user URL shortener there is.
|
|||
docker run -e JSI_BaseUrl=<your-url> \
|
||||
-e JSI_Account__Username=<your-username> \
|
||||
-e JSI_Account__Password=<your-password> \
|
||||
-p 80:8080
|
||||
miawinter/just-short-it:latest
|
||||
```
|
||||
|
||||
|
@ -46,6 +47,8 @@ services:
|
|||
just-short-it:
|
||||
container_name: JustShortIt
|
||||
image: miawinter/just-short-it:latest
|
||||
ports:
|
||||
- "80:8080"
|
||||
environment:
|
||||
- "JSI_BaseUrl=<your-url>"
|
||||
- "JSI_Account__Username=<your-username>"
|
||||
|
|
Loading…
Reference in a new issue