Add docker-compose package in stdlib

Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
Tom Chauveau
2021-06-05 23:09:53 +02:00
parent 36cf20ae2d
commit 9270168f17
2 changed files with 168 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package compose
import (
"dagger.io/alpine"
)
// A container image to run the docker-compose client
#Client: alpine.#Image & {
package: {
bash: true
jq: true
curl: true
"openssh-client": true
"docker-compose": true
}
}