Skip to content

Commit 43509fd

Browse files
committed
2 parents 227f057 + 9fe5d07 commit 43509fd

File tree

5 files changed

+37
-1
lines changed

5 files changed

+37
-1
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
3+
{
4+
"name": "Codespaces",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/base:bullseye",
7+
// Features to add to the dev container. More info: https://containers.dev/features.
8+
"features": {
9+
"ghcr.io/devcontainers/features/github-cli:1": {}
10+
},
11+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
12+
// "forwardPorts": [],
13+
"secrets": {
14+
"NAME_OF_SECRET_1": {
15+
"description": "This is the description of the secret.",
16+
"documentationUrl": "https://example.com/link/to/info"
17+
},
18+
"NAME_OF_SECRET_2": {}
19+
}
20+
// Configure tool-specific properties.
21+
// "customizations": {},
22+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
23+
// "remoteUser": "root"
24+
}

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ updates:
99
directory: "/" # Location of package manifests
1010
schedule:
1111
interval: "weekly"
12+
- package-ecosystem: "devcontainers" # See documentation for possible values
13+
directory: "/" # Location of package manifests
14+
schedule:
15+
interval: "weekly"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dev Containers
22

3-
This repository contains the slide deck and resources for the presentation "Dev Containers: A VS Code Superpower" by Chris Ayers.
3+
This repository contains the slide deck and resources for the presentation "The Power of Dev Containers and GitHub Codespaces" by [Chris Ayers](https://github.com/codebytes).
44

55
## Overview
66
Dev Containers allow developers to create a consistent development environment using Docker and Visual Studio Code. This repository provides resources, documentation, and sample repositories to help you get started with Dev Containers.

slides/Slides.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,14 @@ p { text-align: center; }
199199

200200
---
201201

202+
# GitHub Codespace templates
203+
204+
[https://github.com/codespaces/templates](https://github.com/codespaces/templates)
205+
206+
![bg right:60% width:95%](img/github-codespace-templates.png)
207+
208+
---
209+
202210
# DEMO TIME
203211

204212
![bg right 70%](img/connected-to-dev-container.png)
239 KB
Loading

0 commit comments

Comments
 (0)