Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add basic devcontainer #30

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"dockerFile": "Dockerfile",
"remoteUser": "root",
"postCreateCommand": "./main.sh"
}
1 change: 1 addition & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
image: Dockerfile
tasks:
- name: Setup environment variables
command: |
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FROM gitpod/workspace-full
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,23 @@ Open Cloud Dev Box is a project that makes learning cloud faster, easier and saf

## Getting Started

- [Open in Gitpod](https://gitpod.io/#github.com/openupthecloud/open-cloud-dev-box)
- Open in Codespaces (coming soon)
- Open locally (coming soon)
## Getting Started

### With Gitpod

1. Create Gitpod account.
2. [Open in Gitpod](https://gitpod.io/#github.com/openupthecloud/open-cloud-dev-box) (Or click: [gitpod.io/#https://github.com/openupthecloud/open-cloud-dev-box](https://github.com/openupthecloud/open-cloud-dev-box))
3. Type `aws` (or any other supported CLI or tool) into the terminal to verify

### With Codespaces

1. Create a GitHub account
2. Go to: github.com/codespaces and start a new Codespace based on the project
loujaybee marked this conversation as resolved.
Show resolved Hide resolved
3. Type `aws` (or any other supported CLI or tool) into the terminal to verify

### Locally

Coming soon!

## Compatibilities

Expand Down
Empty file modified install-kubectl.sh
100644 → 100755
Empty file.
Empty file modified install-terraform.sh
100644 → 100755
Empty file.
Empty file modified install-vsextensions.sh
100644 → 100755
Empty file.
10 changes: 7 additions & 3 deletions main.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
#!/bin/bash

source ./setup-env-variables.sh
./install-terraform.sh
./install-aws-cli.sh
./install-kubectl.sh
./install-terraform.sh
./install-kubectl.sh
./install-vsextensions.sh

./setup-env-variables.sh
./collect-credentials.sh
./open-cloud-dashboards.sh
source ./install-kubectl.sh
source ./install-terraform.sh