File tree 2 files changed +19
-2
lines changed
2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 26
26
27
27
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
28
28
"remoteUser" : " root"
29
- }
29
+ }
30
+
31
+ // Notes:
32
+ // Set site url for wordpress
33
+
34
+ // mysql -u exampleuser -p exampledb
35
+
36
+ // UPDATE wp_options
37
+ // SET option_value = 'https://docker-development-youtube-series-4rjv9rg7hqrg9-80.githubpreview.dev'
38
+ // WHERE option_name = 'home';
39
+
40
+ // UPDATE wp_options
41
+ // SET option_value = 'https://docker-development-youtube-series-4rjv9rg7hqrg9-80.githubpreview.dev'
42
+ // WHERE option_name = 'siteurl';
Original file line number Diff line number Diff line change @@ -4,5 +4,9 @@ ARG KIND_VERSION=0.14.0
4
4
5
5
RUN apk add --no-cache curl docker-cli
6
6
7
+ RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
8
+ RUN chmod +x ./kubectl
9
+ RUN mv ./kubectl /usr/local/bin/kubectl
10
+
7
11
RUN curl -L https://github.com/kubernetes-sigs/kind/releases/download/v${KIND_VERSION}/kind-linux-amd64 -o /usr/local/bin/kind && \
8
- chmod +x /usr/local/bin/kind
12
+ chmod +x /usr/local/bin/kind
You can’t perform that action at this time.
0 commit comments