Skip to content

Commit e2385f4

Browse files
Add bash completion for docker cli.
1 parent 70a81fc commit e2385f4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.devcontainer/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ FROM mcr.microsoft.com/devcontainers/base:bullseye
44
# [Optional] Uncomment this section to install additional OS packages.
55
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
66
# && apt-get -y install --no-install-recommends <your-package-list-here>
7+
8+
RUN \
9+
apt update && \
10+
apt-get install bash-completion -y

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// 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/docker-outside-of-docker-compose
32
{
43
"name": "Development",
54
"dockerComposeFile": "docker-compose.yaml",
@@ -9,6 +8,7 @@
98
"remoteEnv": {
109
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}"
1110
},
11+
// https://containers.dev/features
1212
"features": {
1313
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
1414
"ghcr.io/devcontainers/features/git:1": {},

0 commit comments

Comments
 (0)