Skip to content

Commit dda57d1

Browse files
authored
Merge pull request #24 from warpdotdev/aloke/fix_typos
Fix a few more typos within workflows
2 parents fe769bb + c3a7064 commit dda57d1

8 files changed

Lines changed: 7 additions & 8 deletions

specs/docker/copy_a_file_from_a_docker_container_to_the_current_host.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Copy a file from a Docker container to the current host
33
command: "docker cp {{container_id}}:{{container_filepath}} {{local_filepath}}"
44
tags:
5-
- Docker
5+
- docker
66
description: Copies files from a Docker container back to the host. Note the container does not need to be running in order to use this command.
77
arguments:
88
- name: container_id

specs/docker/copy_files_from_a_host_to_a_docker_container.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Copy files from a host to a docker container
33
command: "docker cp {{container_id}}:/{{container_filepath}} {{local_file_path}}"
44
tags:
5-
- Docker
5+
- docker
66
description: Copies a file (or multiple files) from a container to the host machine.
77
arguments:
88
- name: container_id

specs/docker/list_environment_variables_from_a_docker_container.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: List environment variables from a Docker container
33
command: docker exec container env
44
tags:
5-
- Docker
5+
- docker
66
description: Lists all environment variables from a Docker container.
77
arguments: []
88
source_url: "https://stackoverflow.com/questions/34051747/get-environment-variable-from-docker-container"

specs/docker/remove_all_stopped_docker_containers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Remove all stopped Docker containers
33
command: docker container prune
44
tags:
5-
- Docker
5+
- docker
66
description: "Removes all stopped containers. To clean up all unused containers, networks, images and volumes in one command, run `docker system prune`."
77
arguments: []
88
source_url: "https://stackoverflow.com/questions/17236796/how-to-remove-old-docker-containers"

specs/docker/run_a_script_inside_a_docker_container_using_a_shell_script.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Run a script inside a docker container using a shell script
33
command: "docker exec {{container_id}} {{filepath_in_container}}"
44
tags:
5-
- Docker
5+
- docker
66
description: Runs a shell script located within a running Docker container.
77
arguments:
88
- name: container_id

specs/docker/start_a_bash_shell_within_a_docker_container.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Start a Bash shell within a Docker container
33
command: "docker exec -it {{container_name}} bash"
44
tags:
5-
- Docker
5+
- docker
66
description: Runs a Bash subshell within a Docker container.
77
arguments:
88
- name: container_name

specs/npm/install_npm_package_from_git_hub_directly.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: Install npm package from GitHub directly
33
command: "npm install {{repo}}#{{branch}}"
44
tags:
55
- npm
6-
- GitHub
76
description: "Installs an NPM package from GitHub by specifying the repo and branch. For example, if the repo was `warpdotdev/warp`. the command would be `npm install warpdotdev/warp#main`."
87
arguments:
98
- name: repo

specs/ssl/generate_a_self_signed_ssl_certificate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Generate a self-signed SSL certificate
3-
command: "openssl req -x509 -newkey rsa:4096 -keyout {{key_file}} -out {{cert_file} -sha256 -days {{[expiration_days}}"
3+
command: "openssl req -x509 -newkey rsa:4096 -keyout {{key_file}} -out {{cert_file}} -sha256 -days {{expiration_days}}"
44
tags:
55
- ssl
66
- openssl

0 commit comments

Comments
 (0)