Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.
Open
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
8 changes: 4 additions & 4 deletions docs/deploy-with-docker-on-linuxone.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ LinuxONE was built for open source so you can harness the agility of the open re
## Prerequisites

Register at [LinuxONE Community Cloud](https://developer.ibm.com/linuxone/) for a trial account.
We will be using a Ret Hat base image for this journey, so be sure to chose the
We will be using a Red Hat base image for this journey, so be sure to chose the
red 'Request your trial' button on the lower left side of this page:
![testdrive](../images/linuxone_testdrive.png)

## Steps

[Docker Hub](https://hub.docker.com) makes it rather simple to get started with
containers, as there are quite a few images ready to for your to use. You can
containers, as there are quite a few images ready for you to use. You can
browse the list of images that are compatable with LinuxONE by doing a search
on the ['s390x'](https://hub.docker.com/search/?isAutomated=0&isOfficial=0&page=1&pullCount=0&q=s390x&starCount=0) tag.
We will start off with everyone's favorite demo: an installation of WordPress.
Expand Down Expand Up @@ -61,7 +61,7 @@ sudo pip install docker-compose

### 3. Run and install WordPress

Now that we have docker-compose installed, we will create a docker-compose.yml
Now that we have docker-compose installed, we will create a `docker-compose.yml`
file. This will specify a couple of containers from the Docker Store that
have been specifically written for z systems.

Expand All @@ -87,7 +87,7 @@ services:
MYSQL_ROOT_PASSWORD: example
```

And finally, run docker-compose (from the same directory you created the .yml)
And finally, run docker-compose (from the same directory you created the `.sh`)

```text

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should change to sh for consistency

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

sudo docker-compose up -d
Expand Down