mirror of
https://git.asonix.dog/asonix/pict-rs.git
synced 2024-11-24 18:41:06 +00:00
Bump version
This commit is contained in:
parent
23e67b9697
commit
d9c5ed20b9
6 changed files with 6 additions and 6 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1642,7 +1642,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pict-rs"
|
name = "pict-rs"
|
||||||
version = "0.4.0-rc.10"
|
version = "0.4.0-rc.11"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"actix-form-data",
|
"actix-form-data",
|
||||||
"actix-rt",
|
"actix-rt",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pict-rs"
|
name = "pict-rs"
|
||||||
description = "A simple image hosting service"
|
description = "A simple image hosting service"
|
||||||
version = "0.4.0-rc.10"
|
version = "0.4.0-rc.11"
|
||||||
authors = ["asonix <asonix@asonix.dog>"]
|
authors = ["asonix <asonix@asonix.dog>"]
|
||||||
license = "AGPL-3.0"
|
license = "AGPL-3.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -563,7 +563,7 @@ If you're running with docker-compose, this could look like the following:
|
||||||
```bash
|
```bash
|
||||||
$ sudo docker compose stop pictrs # stop the pict-rs container
|
$ sudo docker compose stop pictrs # stop the pict-rs container
|
||||||
$ sudo docker compose run pictrs sh # launch a shell in the pict-rs container
|
$ sudo docker compose run pictrs sh # launch a shell in the pict-rs container
|
||||||
> pict-rs --version # verify pict-rs version is recent (should probably be 0.4.0-rc.10 or later)
|
> pict-rs --version # verify pict-rs version is recent (should probably be 0.4.0-rc.11 or later)
|
||||||
> pict-rs \
|
> pict-rs \
|
||||||
migrate-store \
|
migrate-store \
|
||||||
filesystem \
|
filesystem \
|
||||||
|
|
|
@ -2,7 +2,7 @@ version: '3.3'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
pictrs:
|
pictrs:
|
||||||
image: asonix/pictrs:0.4.0-rc.10
|
image: asonix/pictrs:0.4.0-rc.11
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:8080:8080"
|
- "127.0.0.1:8080:8080"
|
||||||
restart: always
|
restart: always
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage {
|
rustPlatform.buildRustPackage {
|
||||||
pname = "pict-rs";
|
pname = "pict-rs";
|
||||||
version = "0.4.0-rc.10";
|
version = "0.4.0-rc.11";
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
||||||
cargoLock = {
|
cargoLock = {
|
||||||
|
|
|
@ -69,7 +69,7 @@ targets = 'warn,tracing_actix_web=info,actix_server=info,actix_web=info'
|
||||||
#
|
#
|
||||||
# services:
|
# services:
|
||||||
# pictrs:
|
# pictrs:
|
||||||
# image: asonix/pictrs:0.4.0-rc.10
|
# image: asonix/pictrs:0.4.0-rc.11
|
||||||
# ports:
|
# ports:
|
||||||
# - "127.0.0.1:8080:8080"
|
# - "127.0.0.1:8080:8080"
|
||||||
# - "127.0.0.1:6669:6669" # this is the line that exposes console
|
# - "127.0.0.1:6669:6669" # this is the line that exposes console
|
||||||
|
|
Loading…
Reference in a new issue