-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
4 changed files
with
26 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 @@ | ||
FROM ubuntu:20.04 AS base |
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,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. |
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,11 @@ | ||
services: | ||
base: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
image: base | ||
container_name: base | ||
# volumes: | ||
# - .:/app | ||
# working_dir: /app | ||
# command: tail -f /dev/null |
Empty file.