1
0
Fork 0
mirror of https://github.com/miawinter98/just-short-it.git synced 2024-09-20 01:39:00 +00:00

Added image names and shields.io badges

This commit is contained in:
Mia Rose Winter 2023-04-15 16:29:23 +02:00
parent 22b5bd2b11
commit f7b48b5ab2
Signed by: miawinter
GPG key ID: 4B6F6A83178F595E

View file

@ -2,13 +2,16 @@
The most KISS single user URL shortener there is.
![](https://img.shields.io/github/license/miawinter98/just-short-it?color=green)
![](https://img.shields.io/docker/pulls/miawinter/just-short-it?color=informational)
![](https://img.shields.io/docker/stars/miawinter/just-short-it?color=yellow)
## 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