This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Dockerハンズオン | |
| ```bash | |
| mkdir docker-handson && cd docker-handson | |
| mkdir src laravel | |
| ``` | |
| ## install.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Keybase proof | |
| I hereby claim: | |
| * I am reoring on github. | |
| * I am reoring (https://keybase.io/reoring) on keybase. | |
| * I have a public key ASDbmRe2qHwSB9Sgh0QCa-EKgdHVF4Q_pVE_1o02yiyt4Qo | |
| To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package controllers | |
| import ( | |
| "context" | |
| "encoding/base64" | |
| appsv1 "k8s.io/api/apps/v1" | |
| v1 "k8s.io/api/core/v1" | |
| metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | |
| "k8s.io/client-go/kubernetes" | |
| "k8s.io/client-go/tools/record" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as pulumi from "@pulumi/pulumi"; | |
| import * as aws from "@pulumi/aws"; | |
| import * as awsx from "@pulumi/awsx"; | |
| import * as eks from "@pulumi/eks"; | |
| import * as azure from "@pulumi/azure"; | |
| import * as k8s from "@pulumi/kubernetes"; | |
| // Create an AWS VPC. | |
| const vpc = new awsx.ec2.Vpc("vpc"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Why this script exists: | |
| # - The AUR package cannot auto-download the Blackmagic ZIP, so we stage it first. | |
| # - Resolve 20.3.x starts but later crashes with opencl-mesa/Rusticl on this AMD system. | |
| # - Resolve 20.3.x also fails very early with ROCm/OpenCL 7.2.x here. | |
| # - ROCm OpenCL 7.1.1 plus XWayland has been the stable combination. | |
| # - The launcher also clears stale Resolve lock/socket files that can block relaunches. | |
| # |
OlderNewer