This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/pkg/alpha.dagger.io/docker/compose/client.cue

17 lines
278 B
CUE
Raw Normal View History

package compose
import (
"alpha.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
}
}