Skip to content

Commit 1bf7e04

Browse files
404 fix for Safari
1 parent 539fcb5 commit 1bf7e04

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

404.md

+2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,11 @@ function doFwd() {
6161
if (gonnaFwd) {
6262
console.log("Forwarding to: " + newURL);
6363
window.location.replace(newURL);
64+
window.location = newURL;
6465
document.write('<meta http-equiv="refresh" content="0; url=' + newURL + '">')
6566
} else {
6667
window.location.replace("/sorry/#" + forwardingURL);
68+
window.location = "/sorry/#" + forwardingURL;
6769
document.write('<meta http-equiv="refresh" content="0; url=/sorry/#' + forwardingURL + '">')
6870
}
6971
}

_layouts/docs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
</div>
192192
<div {% if page.notoc %} class="col-xs-12 col-sm-9 col-md-10" {% else %} class="col-xs-12 col-sm-9 col-md-8 col-xl-9" {% endif %} >
193193
<section class="section" id="DocumentationText">
194-
{{ content }}
194+
{{ content | markdownify }}
195195
{% if page.noratings != true %}
196196
<div style="text-align: center; margin-top: 50px">
197197
<img src="/images/chat.png" alt="chat icon" style="margin-right: 10px">

getting-started/part4.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ All we have to do to let Docker Cloud manage nodes for us on free-tier AWS is
4343
create a service policy that grants certain permissions, and apply that to an
4444
identity called a "role," using AWS's Identity and Access Management (IAM) tool.
4545

46-
- Go to [http://aws.amazon.com] and sign up for an account. It's free.
46+
- Go to [aws.amazon.com](https://aws.amazon.com) and sign up for an account. It's free.
4747
- Go to [the IAM panel](https://console.aws.amazon.com/iam/home#policies)
4848
- Click **Create Policy**, then **Create Your Own Policy**.
4949
- Name the policy `dockercloud-policy` and paste the following text in the
@@ -86,7 +86,7 @@ So, let's do that now.
8686

8787
### Configure Docker Cloud to manage to your AWS instances
8888

89-
- Go to [http://cloud.docker.com](http://cloud.docker.com) and sign in with the
89+
- Go to [cloud.docker.com](http://cloud.docker.com) and sign in with the
9090
same Docker ID you used in [step 2](/getting-started/step2.md).
9191
- Click **Settings**, and in the Cloud Providers section, click the plug icon.
9292
- Enter the Role ARN string you copied earlier, e.g. `arn:aws:iam::123456789123:role/dockercloud-role`.
@@ -97,6 +97,16 @@ into a swarm.
9797

9898
## Creating your first Swarm cluster
9999

100+
1. Go back to Docker Cloud by visiting [cloud.docker.com](https://cloud.docker.com).
101+
2. Click **Node Clusters** in the left-navigation, then click the **Create** button.
102+
This pulls up a form where you can create our cluster.
103+
3. Leave everything default, except:
104+
- Name: Give your cluster a name.
105+
- Region: Select a region that's close to you.
106+
- Provider: Set to "Amazon Web Services"
107+
- Type/Size:
108+
4. Launch the cluster by clicking **Launch node cluster**, and
109+
5.
100110

101111

102112
[On to next >>](part5.md){: class="button darkblue-btn"}

0 commit comments

Comments
 (0)