A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.

bump to v2.2

Changed files
+4 -4
+3 -3
README.md
··· 8 8 9 9 ## How to Run 10 10 11 - ### From Docker: 11 + ### From Docker 12 12 13 13 ```bash 14 14 docker run -p 8080:8080 \ ··· 16 16 -e SIMPLELINK_USER=admin@example.com \ 17 17 -e SIMPLELINK_PASS=your-secure-password \ 18 18 -v simplelink_data:/data \ 19 - ghcr.io/waveringana/simplelink:v2.1 19 + ghcr.io/waveringana/simplelink:v2.2 20 20 ``` 21 21 22 22 ### Environment Variables ··· 31 31 32 32 If `SIMPLELINK_USER` and `SIMPLELINK_PASS` are not passed, an admin-setup-token is pasted to the console and as a text file in the project root. 33 33 34 - ### From Docker Compose: 34 + ### From Docker Compose 35 35 36 36 Edit the docker-compose.yml file. It comes included with a PostgreSQL db configuration. 37 37
+1 -1
docker-compose.yml
··· 19 19 - shortener-network 20 20 21 21 app: 22 - image: ghcr.io/waveringana/simplelink:v2.1 22 + image: ghcr.io/waveringana/simplelink:v2.2 23 23 container_name: shortener-app 24 24 ports: 25 25 - "8080:8080"