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
14 changes: 7 additions & 7 deletions resources/score-compose.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
## Initialize your local workspace
Initialize your local workspace

This will use the default provisioners, you can use other provisioners instead like illustrated [here](https://github.dev/score-spec/community-provisioners).

```bash
score-commpose init
```

## Get the provisioner definition
Get the provisioner definition

```bash
score-compose provisioners list
```

## Generate the platform specific manifests
Generate the platform specific manifests

```bash
score-commpose generate score.yaml
```

## See the resource outputs
See the resource outputs

```bash
score-commpose resources list
```

You can run `score-compose resources get-outputs` on each resource listed to get their `outputs`.

## Deploy the generated manifests
Deploy the generated manifests

```bash
docker compose up -d
```

## See the running containers
See the running containers

```bash
docker ps
```
```
14 changes: 7 additions & 7 deletions resources/score-k8s.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
## Initialize your local workspace
Initialize your local workspace

This will use the default provisioners, you can use other provisioners instead like illustrated [here](https://github.dev/score-spec/community-provisioners).

```bash
score-k8s init
```

## Get the provisioner definition
Get the provisioner definition

```bash
score-k8s provisioners list
```

## Generate the platform specific manifests
Generate the platform specific manifests

```bash
score-k8s generate score.yaml
```

## See the resource outputs
See the resource outputs

```bash
score-k8s resources list
```

You can run `score-k8s resources get-outputs` on each resource listed to get their `outputs`.

## Deploy the generated manifests
Deploy the generated manifests

```bash
kubectl apply -f manifests.yaml
```

## See the running containers
See the running containers

```bash
kubectl get all
```
```
10 changes: 5 additions & 5 deletions specification/score-compose.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
## Initialize your local workspace
Initialize your local workspace

```bash
score-compose init
```

## Generate the platform specific manifests
Generate the platform specific manifests

```bash
score-compose generate score.yaml --image busybox
```

## Deploy the generated manifests
Deploy the generated manifests

```bash
docker compose up -d
```

## See the running containers
See the running containers

```bash
docker ps
```
```
10 changes: 5 additions & 5 deletions specification/score-k8s.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
## Initialize your local workspace
Initialize your local workspace

```bash
score-k8s init
```

## Generate the platform specific manifests
Generate the platform specific manifests

```bash
score-k8s generate score.yaml --image busybox
```

## Deploy the generated manifests
Deploy the generated manifests

```bash
kubectl apply -f manifests.yaml
```

## See the running containers
See the running containers

```bash
kubectl get all
```
```