From f7b48b5ab28879da115d779a32e7514b7575be78 Mon Sep 17 00:00:00 2001 From: Mia Winter Date: Sat, 15 Apr 2023 16:29:23 +0200 Subject: [PATCH] Added image names and shields.io badges --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 21e436e..0380716 100644 --- a/README.md +++ b/README.md @@ -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= \ -e JSI_Account__Username= \ -e JSI_Account__Password= \ - + miawinter/just-short-it:latest ``` @@ -19,7 +22,7 @@ version: '3.4' services: just-short-it: container_name: JustShortIt - image: + image: miawinter/just-short-it:latest environment: - "JSI_BaseUrl=" - "JSI_Account__Username=" @@ -42,12 +45,14 @@ version: '3.4' services: just-short-it: container_name: JustShortIt - image: + image: miawinter/just-short-it:latest environment: - "JSI_BaseUrl=" - "JSI_Account__Username=" - "JSI_Account__Password=" - "JSI_Redis__ConnectionString=redis,password=" + depends_on: + - redis redis: container_name: Redis image: redis:alpine