diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-10-15 21:20:11 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-10-15 21:20:11 +0200 |
commit | 4af75bd8b829178d35812dcdcde0b316c67d7697 (patch) | |
tree | 8208e2dfe181029eea79a155fb7fe1fdd6caa89e /app/build | |
parent | 25ec221248904c14bf1e7283620121c52c244437 (diff) | |
download | infrastructure-4af75bd8b829178d35812dcdcde0b316c67d7697.tar.gz infrastructure-4af75bd8b829178d35812dcdcde0b316c67d7697.zip |
WIP plume
Diffstat (limited to 'app/build')
-rw-r--r-- | app/build/docker-compose.yml | 7 | ||||
-rwxr-xr-x | app/build/plume/plm-start | 6 |
2 files changed, 12 insertions, 1 deletions
diff --git a/app/build/docker-compose.yml b/app/build/docker-compose.yml index 109a26a..1ca740a 100644 --- a/app/build/docker-compose.yml +++ b/app/build/docker-compose.yml @@ -61,3 +61,10 @@ services: args: VERSION: fake-1 image: superboum/amd64_jitsi_xmpp:v4 + + plume: + build: + context: ./plume + args: + VERSION: 003dcf861a9f55720b03d52f2f95f5f59e338809 + image: superboum/plume:v1 diff --git a/app/build/plume/plm-start b/app/build/plume/plm-start index 694b8c8..da9d288 100755 --- a/app/build/plume/plm-start +++ b/app/build/plume/plm-start @@ -1,5 +1,9 @@ #!/bin/bash -diesel migration run +until plm migration run; + do sleep 2; +done plm search init +plm instance new --domain "$DOMAIN_NAME" --name "$INSTANCE_NAME" --private + plume |