diff --git a/README.md b/README.md index 98dfcd5..e618cfc 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A very performant and light (2MB in memory) link shortener and tracker. Written ## How to Run -### From Docker: +### From Docker ```bash docker run -p 8080:8080 \ @@ -16,7 +16,7 @@ docker run -p 8080:8080 \ -e SIMPLELINK_USER=admin@example.com \ -e SIMPLELINK_PASS=your-secure-password \ -v simplelink_data:/data \ - ghcr.io/waveringana/simplelink:v2.1 + ghcr.io/waveringana/simplelink:v2.2 ``` ### Environment Variables @@ -31,7 +31,7 @@ docker run -p 8080:8080 \ 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. -### From Docker Compose: +### From Docker Compose Edit the docker-compose.yml file. It comes included with a PostgreSQL db configuration. diff --git a/docker-compose.yml b/docker-compose.yml index 66d713c..d97f027 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,7 +19,7 @@ services: - shortener-network app: - image: ghcr.io/waveringana/simplelink:v2.1 + image: ghcr.io/waveringana/simplelink:v2.2 container_name: shortener-app ports: - "8080:8080"