@@ -12,18 +12,15 @@ What's new in Portainer 2.0? Well, a ton. With the release of Portainer 2 you
12
12
13
13
[ Watch Video] ( https://www.youtube.com/watch?v=jzhd6tcjvw0 )
14
14
15
-
16
15
## Let's get started
17
16
18
17
Here are the commands used in the video. Be sure to use them appropriately.
19
18
20
-
21
19
### Install ubuntu
22
20
23
21
https://ubuntu.com/
24
22
25
-
26
- ### Install Docker
23
+ ### Install Docker
27
24
28
25
https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository
29
26
@@ -38,7 +35,6 @@ $ sudo apt-get install \
38
35
software-properties-common
39
36
```
40
37
41
-
42
38
``` bash
43
39
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
44
40
```
@@ -72,7 +68,6 @@ sudo usermod -aG docker $USER
72
68
logout
73
69
```
74
70
75
-
76
71
### Install kubectl
77
72
78
73
https://kubernetes.io/docs/tasks/tools/install-kubectl/
@@ -95,39 +90,34 @@ kubectl version --client
95
90
96
91
### Install k3d
97
92
98
- https://github.com/rancher/k3d
93
+ [ https://github.com/rancher/k3d ] ( https://github.com/rancher/k3d )
99
94
100
95
``` bash
101
96
curl -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | bash
102
97
```
103
98
104
-
105
99
### Install k3s
106
100
107
-
108
101
``` bash
109
- k3d cluster create portainer --api-port 6443 --servers 1 --agents 1 -p 30000-32767:30000-32767@server[0]
102
+ k3d cluster create portainer --api-port 6443 --servers 1 --agents 1 -p 30000-32767:30000-32767@server:0
110
103
```
111
104
112
-
113
105
``` bash
114
- k3d cluster create portainer --api-port 6443 --servers 1 --agents 1 -p " 30000-32767:30000-32767@server[0] "
106
+ k3d cluster create portainer --api-port 6443 --servers 1 --agents 1 -p " 30000-32767:30000-32767@server:0 "
115
107
```
116
108
117
-
118
109
### Install Portainer
119
110
120
- https://github.com/portainer/k8s
111
+ [ https://github.com/portainer/k8s ] ( https://github.com/portainer/k8s )
121
112
122
113
``` bash
123
114
kubectl create namespace portainer
124
115
kubectl apply -n portainer -f https://raw.githubusercontent.com/portainer/k8s/master/deploy/manifests/portainer/portainer.yaml
125
116
```
126
117
127
- ```
118
+ ``` bash
128
119
The Portainer UI is hosted on port ` 30777`
129
120
130
121
131
122
Example: ` http://192.168.0.1:30777`
132
-
133
- ```
123
+ ```
0 commit comments