Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuxel committed May 8, 2019
1 parent af6f09d commit 7689e28
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,15 @@ services:
# This lets you avoid setting up Git again in the container
- ~/.gitconfig:/root/.gitconfig

# Uncomment the next four lines if you will use ptrace-based debuggers like C++, Go, and Rust
# Uncomment the next line if you plan to install the Docker CLI. See the docker-in-docker-compose definition for details.
# - /var/run/docker.sock:/var/run/docker.sock

# Uncomment the next four lines if you will use a ptrace-based debugger like C++, Go, and Rust.
# cap_add:
# - SYS_PTRACE
# security_opt:
# - seccomp:unconfined

# Overrides default command so things don't shut down after the process ends - useful for debugging
# Overrides default command so things don't shut down after the process ends - useful for debugging.
command: sleep infinity

Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@

// The optional 'runArgs' property can be used to specify additional runtime arguments.
"runArgs": [
// Uncomment the next line if you plan to install the Docker CLI. See the Docker in Docker definition for details
// Uncomment the next line if you plan to install the Docker CLI. See the docker-in-docker definition for details
// "-v","/var/run/docker.sock:/var/run/docker.sock",

// Uncomment the next three lines if you will be using a ptrace-based debuggers like C++, Go, and Rust.
// Uncomment the next two lines if you will use a ptrace-based debugger like C++, Go, and Rust
// "--cap-add=SYS_PTRACE",
// "--security-opt",
/// "seccomp=unconfined"
// "--security-opt", "seccomp=unconfined"
]
}
7 changes: 3 additions & 4 deletions container-templates/image/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@

// The optional 'runArgs' property can be used to specify additional runtime arguments.
"runArgs": [
// Uncomment the next line if you plan to install the Docker CLI. See the Docker in Docker definition for details
// Uncomment the next line if you plan to install the Docker CLI. See the docker-in-docker definition for details
// "-v","/var/run/docker.sock:/var/run/docker.sock",

// Uncomment the next three lines if you will be using a ptrace-based debuggers like C++, Go, and Rust.
// Uncomment the next two lines if you will use a ptrace-based debugger like C++, Go, and Rust
// "--cap-add=SYS_PTRACE",
// "--security-opt",
/// "seccomp=unconfined"
// "--security-opt", "seccomp=unconfined"
]

}
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ services:
# This lets you avoid setting up Git again in the container
- ~/.gitconfig:/root/.gitconfig

# Uncomment the line below if you plan to install the Docker CLI. See the docker-in-docker-compose definition for details.
# Uncomment the next line if you plan to install the Docker CLI. See the docker-in-docker-compose definition for details.
# - /var/run/docker.sock:/var/run/docker.sock

# Uncomment the next four lines if you will use ptrace-based debuggers like C++, Go, and Rust
# Uncomment the next four lines if you will use a ptrace-based debugger like C++, Go, and Rust.
# cap_add:
# - SYS_PTRACE
# security_opt:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@

// The optional 'runArgs' property can be used to specify additional runtime arguments.
"runArgs": [
// Uncomment the next line if you plan to install the Docker CLI. See the Docker in Docker definition for details
// Uncomment the next line if you plan to install the Docker CLI. See the docker-in-docker definition for details.
// "-v","/var/run/docker.sock:/var/run/docker.sock",

// Uncomment the next three lines if you will be using a ptrace-based debuggers like C++, Go, and Rust.
// Uncomment the next two lines if you will be using a ptrace-based debugger like C++, Go, and Rust.
// "--cap-add=SYS_PTRACE",
// "--security-opt",
/// "seccomp=unconfined"
// "--security-opt", "seccomp=unconfined"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ services:
# Forwards the Docker socket from one side ot the other
- /var/run/docker.sock:/var/run/docker.sock

# Uncomment the next four lines if you will use ptrace-based debuggers like C++, Go, and Rust
# Uncomment the next four lines if you will use a ptrace-based debuggers like C++, Go, and Rust.
# cap_add:
# - SYS_PTRACE
# security_opt:
# - seccomp:unconfined

# Overrides default command so things don't shut down after the process ends - useful for debugging
# Overrides default command so things don't shut down after the process ends - useful for debugging.
command: sleep infinity

5 changes: 2 additions & 3 deletions containers/docker-in-docker/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
"runArgs": [
"-v","/var/run/docker.sock:/var/run/docker.sock",

// Uncomment the next three lines if you will be using a ptrace-based debuggers like C++, Go, and Rust.
// Uncomment the next two lines if you will use a ptrace-based debugger like C++, Go, and Rust.
// "--cap-add=SYS_PTRACE",
// "--security-opt",
/// "seccomp=unconfined"
// "--security-opt", "seccomp=unconfined"
]
}
5 changes: 2 additions & 3 deletions containers/kubernetes-helm/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
"-v", "/var/run/docker.sock:/var/run/docker.sock",
"-v", "${env:HOME}${env:USERPROFILE}/.kube:/root/.kube-localhost",

// Uncomment the next three lines if you will be using a ptrace-based debuggers like C++, Go, and Rust.
// Uncomment the next two lines if you will use a ptrace-based debugger like C++, Go, and Rust.
// "--cap-add=SYS_PTRACE",
// "--security-opt",
/// "seccomp=unconfined"
// "--security-opt", "seccomp=unconfined"
]
}
7 changes: 3 additions & 4 deletions containers/ubuntu-18.04-git/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
"dockerFile": "Dockerfile",
"appPort": [],
"runArgs": [
// Uncomment the next line if you plan to install the Docker CLI. See the Docker in Docker definition for details
// Uncomment the next line if you plan to install the Docker CLI. See the docker-in-docker definition for details.
// "-v","/var/run/docker.sock:/var/run/docker.sock",

// Uncomment the next three lines if you will be using a ptrace-based debuggers like C++, Go, and Rust.
// Uncomment the next two lines if you will use a ptrace-based debugger like C++, Go, and Rust.
// "--cap-add=SYS_PTRACE",
// "--security-opt",
/// "seccomp=unconfined"
// "--security-opt", "seccomp=unconfined"
]
}

0 comments on commit 7689e28

Please sign in to comment.