-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
//"forwardPorts": [1, 2, 3], | ||
|
||
// Install needed extensions | ||
"extensions": [ | ||
"ms-azuretools.vscode-docker", | ||
"golang.Go", | ||
"MS-vsliveshare.vsliveshare", | ||
"earthly.earthfile-syntax-highlighting" | ||
], | ||
|
||
// Adds VS Code settings.json values into the environment. | ||
"settings": { | ||
"peacock.remoteColor": "#0078D7" | ||
}, | ||
// Run Bash script in .devcontainer directory | ||
"postCreateCommand": "/bin/bash ./.devcontainer/post-create.sh > ~/post-create.log", | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
|
||
curl https://luet.io/install.sh | sudo sh | ||
|
||
sudo luet repo add kairos --yes --url quay.io/kairos/packages --type docker | ||
sudo luet install -y utils/goreleaser utils/earthly |