bump to 0.5
This commit is contained in:
		
							parent
							
								
									68a62d8a7c
								
							
						
					
					
						commit
						67af70569b
					
				| 
						 | 
					@ -21,7 +21,7 @@ hopefully, quite reliable.
 | 
				
			||||||
# Latest container image
 | 
					# Latest container image
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```yaml
 | 
					```yaml
 | 
				
			||||||
ghcr.io/meeb/tubesync:v0.4
 | 
					ghcr.io/meeb/tubesync:v0.5
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Screenshots
 | 
					# Screenshots
 | 
				
			||||||
| 
						 | 
					@ -98,7 +98,7 @@ Finally, download and run the container:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```bash
 | 
					```bash
 | 
				
			||||||
# Pull a versioned image
 | 
					# Pull a versioned image
 | 
				
			||||||
$ docker pull ghcr.io/meeb/tubesync:v0.4
 | 
					$ docker pull ghcr.io/meeb/tubesync:v0.5
 | 
				
			||||||
# Start the container using your user ID and group ID
 | 
					# Start the container using your user ID and group ID
 | 
				
			||||||
$ docker run \
 | 
					$ docker run \
 | 
				
			||||||
  -d \
 | 
					  -d \
 | 
				
			||||||
| 
						 | 
					@ -109,7 +109,7 @@ $ docker run \
 | 
				
			||||||
  -v /some/directory/tubesync-config:/config \
 | 
					  -v /some/directory/tubesync-config:/config \
 | 
				
			||||||
  -v /some/directory/tubesync-downloads:/downloads \
 | 
					  -v /some/directory/tubesync-downloads:/downloads \
 | 
				
			||||||
  -p 4848:4848 \
 | 
					  -p 4848:4848 \
 | 
				
			||||||
  ghcr.io/meeb/tubesync:v0.4
 | 
					  ghcr.io/meeb/tubesync:v0.5
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Once running, open `http://localhost:4848` in your browser and you should see the
 | 
					Once running, open `http://localhost:4848` in your browser and you should see the
 | 
				
			||||||
| 
						 | 
					@ -121,7 +121,7 @@ Alternatively, for Docker Compose, you can use something like:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```yaml
 | 
					```yaml
 | 
				
			||||||
  tubesync:
 | 
					  tubesync:
 | 
				
			||||||
    image: ghcr.io/meeb/tubesync:v0.4
 | 
					    image: ghcr.io/meeb/tubesync:v0.5
 | 
				
			||||||
    container_name: tubesync
 | 
					    container_name: tubesync
 | 
				
			||||||
    restart: unless-stopped
 | 
					    restart: unless-stopped
 | 
				
			||||||
    ports:
 | 
					    ports:
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -6,7 +6,7 @@ CONFIG_BASE_DIR = BASE_DIR
 | 
				
			||||||
DOWNLOADS_BASE_DIR = BASE_DIR
 | 
					DOWNLOADS_BASE_DIR = BASE_DIR
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
VERSION = 0.4
 | 
					VERSION = 0.5
 | 
				
			||||||
SECRET_KEY = ''
 | 
					SECRET_KEY = ''
 | 
				
			||||||
DEBUG = False
 | 
					DEBUG = False
 | 
				
			||||||
ALLOWED_HOSTS = []
 | 
					ALLOWED_HOSTS = []
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue