Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/en/docs/community/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ We host [regular community meetings](https://github.com/score-spec/spec?tab=read
## Watch talks about Score

- _(Coming) [KubeCon India 2026 - The Death of the YAML-Engineer: Engineering "Invisible" Platforms With Crossplane and Score](https://sched.co/2IW4r)_
- _(Coming) [KubeCon Europe 2026 - Unifying Inner & Outer Loops To Bridge the Gaps Between Devs & Ops With Microcks + Score - Laurent Broudoux, Microcks & Mathieu Benoit, Docker](https://sched.co/2CVxb)_
- [KubeCon Europe 2026 - Unifying Inner & Outer Loops To Bridge the Gaps Between Devs & Ops With Microcks + Score - Laurent Broudoux, Microcks & Mathieu Benoit, Docker](https://sched.co/2CVxb)
- [Cloud Native Rejekts NA 2025 - Make your Developer's Pains go Away, with the Right Level of Abstraction for your Platform](https://youtu.be/CLCK2lBpWa8)
- [LF Live Webinar: From CI to Kubernetes Catalog: A Practical Guide to vCluster and GitOps](https://youtu.be/U4AgmEo3oV8)
- [KubeCon EU 2025 - Score Lightning Talk](https://sched.co/1tcwp) [[video](https://youtu.be/Nq_PgPKZHsc?list=PLj6h78yzYM2MP0QhYFK8HOb8UqgbIkLMc)]
Expand Down
6 changes: 3 additions & 3 deletions content/en/docs/score implementation/score-compose/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Sets the name of the Docker Compose project. By default, the project name is the
score-compose init --project score-compose2
```

#### `--provisioners` | `-p`
#### `--provisioners`

Loads additional provisoners from a remote url. May be specified multiple times. Supports the following formats:

Expand Down Expand Up @@ -123,7 +123,7 @@ Specifies the location to store a skeleton `.env` file for Docker Compose. This
score-compose generate --env-file /path/to/env-file
```

#### `--image`
#### `--image` | `-i`

Specifies an optional container image to use for any container with `image == '.'`.

Expand Down Expand Up @@ -155,7 +155,7 @@ Specifies an optional file of Score overrides to merge in.
score-compose generate score.yaml --overrides-file=./overrides.score.yaml
```

#### `--publish`
#### `--publish` | `-p`

Specifies an optional set of HOST_PORT:<ref>:CONTAINER_PORT to publish on the host system. <ref> could be either for the workload (example: 8080:my-workload:80) or for a resource (example: 5432:postgres#my-workload.db.host:5432).

Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/score implementation/score-k8s/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@ Specifies optionally if a `Namespace` resource should be generated in the manife
score-k8s generate --namespace test-ns --generate-namespace
```

#### `--image`
#### `--image` | `-i`

Specifies an optional container image to use for any container with `image == '.'`.

```bash
score-k8s generate --image your_container_image
```

### `--namespace`
### `--namespace` | `-n`

Specifies an optional `Namespace` to set on the resources in the manifests.

Expand Down
Loading