mirror of
https://github.com/miawinter98/just-short-it.git
synced 2025-04-05 09:29:53 +00:00
Added image names and shields.io badges
This commit is contained in:
parent
22b5bd2b11
commit
f7b48b5ab2
11
README.md
11
README.md
|
@ -2,13 +2,16 @@
|
|||
|
||||
The most KISS single user URL shortener there is.
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## To simply run Just Short It in a container run:
|
||||
```
|
||||
docker run -e JSI_BaseUrl=<your-url> \
|
||||
-e JSI_Account__Username=<your-username> \
|
||||
-e JSI_Account__Password=<your-password> \
|
||||
<todo>
|
||||
miawinter/just-short-it:latest
|
||||
```
|
||||
|
||||
|
||||
|
@ -19,7 +22,7 @@ version: '3.4'
|
|||
services:
|
||||
just-short-it:
|
||||
container_name: JustShortIt
|
||||
image: <todo>
|
||||
image: miawinter/just-short-it:latest
|
||||
environment:
|
||||
- "JSI_BaseUrl=<your-url>"
|
||||
- "JSI_Account__Username=<your-username>"
|
||||
|
@ -42,12 +45,14 @@ version: '3.4'
|
|||
services:
|
||||
just-short-it:
|
||||
container_name: JustShortIt
|
||||
image: <todo>
|
||||
image: miawinter/just-short-it:latest
|
||||
environment:
|
||||
- "JSI_BaseUrl=<your-url>"
|
||||
- "JSI_Account__Username=<your-username>"
|
||||
- "JSI_Account__Password=<your-password>"
|
||||
- "JSI_Redis__ConnectionString=redis,password=<your-redis-password>"
|
||||
depends_on:
|
||||
- redis
|
||||
redis:
|
||||
container_name: Redis
|
||||
image: redis:alpine
|
||||
|
|
Loading…
Reference in a new issue