Skip to content

Releases: NicoVogel/docker-extension

Simplify config editing

19 May 14:29
Compare
Choose a tag to compare

A new command is now available to edit the easily config: dc extension edit

This opens a new tab with the config within vscode (default setting). Which editor is used can be changed within the config file itself. Use dc extension get-config to get the file location or use something like nano $(dc extension get-config) to directly edit the config.

Custom Commands and Extension specific Commands

16 May 20:08
Compare
Choose a tag to compare

Custom Commands

Custom Commands are used to define shorter versions of docker commands.

Example:

customCommandMappings: {
  bash: 'docker exec -it $0 /bin/bash'
}

Using the following command dc bash <some container ID> results in docker exec -it <some container ID> /bin/bash

Extension specific commands

There are currently two extension specific commands.

  • dc extension get-config which prints the config location.
  • dc extension save-config <file-path> which override the config file with the another file

First working version

19 Feb 17:57
Compare
Choose a tag to compare

Whats new?

The tool shortens docker commands based on a config file. A default config is created if there is no config.

add docker ps short version

15 Aug 20:56
Compare
Choose a tag to compare
Pre-release

83c8803...v0.0.2