mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-01 18:19:56 +00:00
asonix
0da6159cf1
Garage doesn't work yet. There's an incompatibility between rusty-s3 and garage relevant code: - https://github.com/paolobarbolini/rusty-s3/blob/main/src/actions/multipart_upload/create.rs#L81 - https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/main/src/api/router_macros.rs#L174 Hopefully one of the sides fixes this soon. I asked in the garage matrix channel, and if they point me back to rusty-s3 I'll open an issue there.
15 lines
376 B
Bash
Executable file
15 lines
376 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
ARCH=${1:-amd64}
|
|
|
|
export USER_ID=$(id -u)
|
|
export GROUP_ID=$(id -g)
|
|
|
|
sudo docker-compose build --pull
|
|
sudo docker-compose up -d minio
|
|
sudo docker-compose up -d garage
|
|
sudo docker-compose up -d pictrs_proxy
|
|
sudo docker-compose up -d otel
|
|
sudo docker-compose up -d jaeger
|
|
sudo docker-compose run --service-ports --use-aliases pictrs
|
|
sudo docker-compose down
|