Skip to content

Commit b0e0973

Browse files
Merge pull request #1299 from jasonrandrews/review
content reviews
2 parents 5633bed + 2393ba2 commit b0e0973

File tree

4 files changed

+54
-7
lines changed

4 files changed

+54
-7
lines changed

content/install-guides/aws-copilot.md

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,60 @@ To install Copilot on macOS:
7373
curl -Lo copilot https://github.com/aws/copilot-cli/releases/latest/download/copilot-darwin && chmod +x copilot && sudo mv copilot /usr/local/bin/copilot && copilot --help
7474
```
7575

76+
The help message is printed:
77+
78+
```output
79+
👩‍✈️ Launch and manage containerized applications on AWS.
80+
81+
Commands
82+
Getting Started 🌱
83+
init Create a new ECS or App Runner application.
84+
docs Open the copilot docs.
85+
86+
Develop ✨
87+
app Commands for applications.
88+
Applications are a collection of services and environments.
89+
env Commands for environments.
90+
Environments are deployment stages shared between services.
91+
svc Commands for services.
92+
Services are long-running ECS or App Runner services.
93+
job Commands for jobs.
94+
Jobs are tasks that are triggered by events.
95+
task Commands for tasks.
96+
One-off Amazon ECS tasks that terminate once their work is done.
97+
run Run the workload locally.
98+
99+
Release 🚀
100+
pipeline Commands for pipelines.
101+
Continuous delivery pipelines to release services.
102+
deploy Deploy one or more Copilot jobs or services.
103+
104+
Extend 🧸
105+
storage Commands for working with storage and databases.
106+
secret Commands for secrets.
107+
Secrets are sensitive information that you need in your application.
108+
109+
Settings ⚙️
110+
version Print the version number.
111+
completion Output shell completion code.
112+
113+
Flags
114+
-h, --help help for copilot
115+
-v, --version version for copilot
116+
117+
Examples
118+
Displays the help menu for the "init" command.
119+
`$ copilot init --help`
120+
```
121+
76122
Verify Copilot CLI is installed by running:
77123

78124
```console
79125
copilot --version
80126
```
81-
The version should be printed:
127+
128+
The installed version is displayed:
82129

83130
```output
84-
copilot version: v1.33.0
131+
copilot version: v1.34.0
85132
```

content/learning-paths/servers-and-cloud-computing/supervisord/_next-steps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
# ================================================================================
55

66
next_step_guidance: >
7-
You may also be interested in Kubernetes on Arm.
7+
You may also be interested in Sysbox to run multiple services in a container.
88
# 1-3 sentence recommendation outlining how the reader can generally keep learning about these topics, and a specific explanation of why the next step is being recommended.
99

10-
recommended_path: "/learning-paths/servers-and-cloud-computing/eks-multi-arch/"
10+
recommended_path: "/install-guides/sysbox/"
1111
# Link to the next learning path being recommended.
1212

1313

content/learning-paths/servers-and-cloud-computing/supervisord/example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Here are the changes:
1919
Use a text editor to replace your `Dockerfile` with the new file below:
2020

2121
```console
22-
FROM ubuntu:22.04
22+
FROM ubuntu:24.04
2323

2424
RUN apt-get update && apt-get install -y curl iproute2 sudo openssh-server sudo vim apache2 supervisor procps uuid-runtime
2525

content/learning-paths/servers-and-cloud-computing/supervisord/intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ You will also use Remote.It for container access. For more background informatio
3838

3939
## An example project
4040

41-
You can use an Apache web server running on Ubuntu 22.04 as an example application. It serves a simple `index.html` file which is visible in a browser.
41+
You can use an Apache web server running on Ubuntu 24.04 as an example application. It serves a simple `index.html` file which is visible in a browser.
4242

4343
To begin, use a text editor to copy the code below into a file named `Dockerfile`:
4444

4545
```console
46-
FROM ubuntu:22.04
46+
FROM ubuntu:24.04
4747

4848
RUN apt-get update
4949
RUN apt-get install -y apache2

0 commit comments

Comments
 (0)