bump to 0.9.1

This commit is contained in:
meeb 2021-03-05 14:16:17 +11:00
parent 6ce55b0337
commit c64f54bcb4
2 changed files with 5 additions and 5 deletions

View File

@ -22,7 +22,7 @@ hopefully, quite reliable.
# Latest container image
```yaml
ghcr.io/meeb/tubesync:v0.9
ghcr.io/meeb/tubesync:v0.9.1
```
**NOTE: the `:latest` tag does exist, but will contain in-development commits and may
@ -102,7 +102,7 @@ Finally, download and run the container:
```bash
# Pull a versioned image
$ docker pull ghcr.io/meeb/tubesync:v0.9
$ docker pull ghcr.io/meeb/tubesync:v0.9.1
# Start the container using your user ID and group ID
$ docker run \
-d \
@ -113,7 +113,7 @@ $ docker run \
-v /some/directory/tubesync-config:/config \
-v /some/directory/tubesync-downloads:/downloads \
-p 4848:4848 \
ghcr.io/meeb/tubesync:v0.9
ghcr.io/meeb/tubesync:v0.9.1
```
Once running, open `http://localhost:4848` in your browser and you should see the
@ -125,7 +125,7 @@ Alternatively, for Docker Compose, you can use something like:
```yaml
tubesync:
image: ghcr.io/meeb/tubesync:v0.9
image: ghcr.io/meeb/tubesync:v0.9.1
container_name: tubesync
restart: unless-stopped
ports:

View File

@ -6,7 +6,7 @@ CONFIG_BASE_DIR = BASE_DIR
DOWNLOADS_BASE_DIR = BASE_DIR
VERSION = 0.9
VERSION = 0.9.1
SECRET_KEY = ''
DEBUG = False
ALLOWED_HOSTS = []