Skip to content

Commit

Permalink
feat: add .devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbrig committed Mar 18, 2024
1 parent c8bdea5 commit 38b585b
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FROM ubuntu:20.04 AS base
14 changes: 14 additions & 0 deletions .devcontainer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# DevContainer Folder

> [!NOTE]
> The `.devcontainer` directory contains files that are used to configure the development container for the repository.
The `.devcontainer` directory contains the following files:

- [`devcontainer.json`](./devcontainer.json): A default `devcontainer.json` file that can be used to configure the development container for the repository.

- [`Dockerfile`](./Dockerfile): A default `Dockerfile` file that can be used to configure the development container for the repository.

- [`compose.yml`](./compose.yml): A default `compose.yml` file that can be used to configure the development container for the repository.

- [`README.md`](./README.md): A default `README.md` file that can be used to provide information about the `.devcontainer` directory.
11 changes: 11 additions & 0 deletions .devcontainer/compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
services:
base:
build:
context: .
dockerfile: Dockerfile
image: base
container_name: base
# volumes:
# - .:/app
# working_dir: /app
# command: tail -f /dev/null
Empty file added .devcontainer/devcontainer.json
Empty file.

0 comments on commit 38b585b

Please sign in to comment.