Skip to content

Commit e150df6

Browse files
committedJun 7, 2022
updates
1 parent 143dfaa commit e150df6

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed
 

‎.devcontainer/devcontainer.json

+14-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,17 @@
2626

2727
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
2828
"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';

‎.devcontainer/dockerfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@ ARG KIND_VERSION=0.14.0
44

55
RUN apk add --no-cache curl docker-cli
66

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+
711
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

0 commit comments

Comments
 (0)
Please sign in to comment.