diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-09-02 15:35:59 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2021-09-02 15:35:59 +0200 |
commit | e66b1c2c54f51c4267f2f73753e7f915033eac6d (patch) | |
tree | 932c89a08d6059bd0f8dd2640bd931fd1cd1474b /app/plume | |
parent | d40c41004d0f234140f5ec9fc029f4ef6ce3f60c (diff) | |
download | infrastructure-e66b1c2c54f51c4267f2f73753e7f915033eac6d.tar.gz infrastructure-e66b1c2c54f51c4267f2f73753e7f915033eac6d.zip |
Upgrade Plume
Diffstat (limited to 'app/plume')
-rw-r--r-- | app/plume/build/plume/Dockerfile | 2 | ||||
-rw-r--r-- | app/plume/config/app.env | 2 | ||||
-rw-r--r-- | app/plume/deploy/plume.hcl | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/app/plume/build/plume/Dockerfile b/app/plume/build/plume/Dockerfile index 4e1401d..0afe17d 100644 --- a/app/plume/build/plume/Dockerfile +++ b/app/plume/build/plume/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.47.0-slim-buster as builder +FROM rust:1.54.0-slim-bullseye as builder RUN apt-get update && \ apt-get install -y \ diff --git a/app/plume/config/app.env b/app/plume/config/app.env index 1c234e7..3dbf609 100644 --- a/app/plume/config/app.env +++ b/app/plume/config/app.env @@ -28,3 +28,5 @@ LDAP_USER_NAME_ATTR=cn LDAP_USER_MAIL_ATTR=mail LDAP_TLS=false +RUST_BACKTRACE=1 +RUST_LOG=info diff --git a/app/plume/deploy/plume.hcl b/app/plume/deploy/plume.hcl index 9709c3b..b1d5b9c 100644 --- a/app/plume/deploy/plume.hcl +++ b/app/plume/deploy/plume.hcl @@ -17,7 +17,7 @@ job "plume" { task "plume" { driver = "docker" config { - image = "superboum/plume:v3" + image = "superboum/plume:v4" network_mode = "host" ports = [ "web_port" ] #command = "cat" @@ -35,7 +35,7 @@ job "plume" { } resources { - memory = 100 + memory = 300 cpu = 100 } |