score-compose
score-compose copied to clipboard
Reference implementation for docker-compose target platform support
I have this use case where I want to inject "security context" for each workload / service in my generated `compose.yaml` file. Today, I need to manually do that: ```...
It would be very helpful to be able to import existing shared templates coming from public/private Git repos and public/private OCI registries. Today, I need to manually copy any custom...
I have this `score.file`: ```yaml apiVersion: score.dev/v1b1 metadata: name: store-front containers: store-front: image: . variables: VUE_APP_ORDER_SERVICE_URL: "http://${resources.order-service.name}:3000/" resources: order-service: type: service ``` But I'm getting this error while running `score-compose...
There have been queries about whether score-compose can work with podman. Since podman supports `podman-compose`, a compose spec implementation, this should be possible. But we need to test this and...
We've currently got postgres, redis, and mongodb as database providers. We'd like to round out the database support with support for elastic search. This is frequently used to act as...
> *NOTE: this issue exists for tracking only, currently the score spec http probes are not compatible with compose healthchecks and we may need a schema change to gain some...
For example: ``` score-compose generate score*.yaml --build workloadA/container=my-image --build workloadB/container=my-other-image ``` This is easier to explain and support to avoid single expression generate.
When a variable contains `$${foo}` we current unescape it to `${foo}` in the Dockerfile, which then causes the compose execution to break if the variable foo is not available, or...
Set up Microsoft package manager (e.g. Chocolatey, Scoop) to simplify the installation and management of Score implementation CLIs.
To complete https://github.com/score-spec/score-compose/pull/175, it would be great to support generic OCI image to import external provisioners. https://opencontainers.org/ Example: ``` score-compose init --provisioners oci://... ``` Wondering if for this we could...