Skip to content

Commit

Permalink
fix: reduce git pull and docker compose verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanperret committed Sep 21, 2023
1 parent f391386 commit e416d27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deployment/modules/stack_data/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@ resource "null_resource" "up" {
provisioner "remote-exec" {
inline = [
"rm -rf data-inclusion",
"git clone https://github.com/betagouv/data-inclusion",
"git clone https://github.com/betagouv/data-inclusion 2>&1 | cat",
"cd data-inclusion",
"git checkout vmttn/feat/provision-terraform-scaleway", # TODO: use the commit sha
"docker compose -f deployment/docker/docker-compose.yml --env-file ../.env up -d"
"docker compose -f deployment/docker/docker-compose.yml --env-file ../.env up --quiet-pull -d 2>&1 | cat"
]
}
}
}

0 comments on commit e416d27

Please sign in to comment.