Docker Interactive Shell Runner
Project description
Docker Interactive Shell Runner
The docker-shell
command makes it quick and easy to start an interactive shell inside a Docker container, with the following features:
-
Both Windows and Linux containers are supported.
-
The current working directory is automatically bind-mounted into the container and set as the container's working directory.
-
When running Linux containers under Linux host systems, host networking mode is enabled automatically to eliminate the need for exposing individual ports or port ranges.
-
GPU support is automatically enabled when running GPU-enabled Linux containers under Linux host systems with the NVIDIA binary drivers and the NVIDIA Container Toolkit installed.
-
Short aliases are provided for running popular shells:
dbash
for GNU Bashdsh
for the Bourne shelldzsh
for Zshdcmd
for the Windows Command Promptdps
anddpowershell
for PowerShell
Contents
Installation
To install docker-shell
, run the following command:
# This may need to be prefixed with sudo under Linux and macOS
pip3 install docker-shell
Usage
Basic usage
To start a GNU Bash shell in an official Python container under Windows, macOS or Linux, run either of the following commands:
# Long version
docker-shell bash python
# Short version
dbash python
To start a Windows Command Prompt in a Windows Server Core container under Windows, run either of the following commands:
# Long version
docker-shell cmd mcr.microsoft.com/windows/servercore:ltsc2019
# Short version
dcmd mcr.microsoft.com/windows/servercore:ltsc2019
To start a PowerShell session in a Windows Server Core container under Windows, run any of the following commands:
# Long version
docker-shell powershell mcr.microsoft.com/windows/servercore:ltsc2019
# Short versions
dps mcr.microsoft.com/windows/servercore:ltsc2019
dpowershell mcr.microsoft.com/windows/servercore:ltsc2019
Passing additional flags to Docker
Any additional flags that are specified on the command-line will be propagated automatically to the underlying docker run command:
# The flags `-u 1000 --name mycontainer` will be passed directly to Docker
docker-shell bash python -u 1000 --name mycontainer
Working with alias tags
When working with lengthy image tags it is often more convenient to use the docker tag command to create concise aliases, for example:
# Add a shorter tag alias for the Windows Server Core image
docker tag mcr.microsoft.com/windows/servercore:ltsc2019 windows:latest
# Run a Windows Command Prompt using the short tag
dcmd windows
Specifying additional options using image labels
If there are bind mounts or command-line flags that you always use when running a particular image then you can specify these using image labels in your Dockerfile and docker-shell
will apply them automatically:
FROM my-base-image
# The directory specified by the environment variable `SOMEVAR` will be bind-mounted irrespective of the host platform
LABEL docker-shell.mounts.1="\$SOMEVAR:/data"
# The current user's Desktop directory will be bind-mounted irrespective of the host platform
LABEL docker-shell.mounts.2="~/Desktop:/desktop"
# This specific user's Desktop directory will be bind-mounted only when running on Linux hosts
LABEL docker-shell.linux.mounts.1="/home/user/Desktop:/user-desktop"
# This specific user's Desktop directory will be bind-mounted only when running on macOS hosts
LABEL docker-shell.mac.mounts.1="/Users/user/Desktop:/user-desktop"
# This specific user's Desktop directory will be bind-mounted only when running on Windows hosts
LABEL docker-shell.windows.mounts.1="C:/Users/User/Desktop:/user-desktop"
# The command-line flags `-u 1000` will be applied irrespective of the host platform
LABEL docker-shell.args.1="-u"
LABEL docker-shell.args.2="1000"
# The command-line flags `--priveleged` will be applied only when running on Linux hosts
LABEL docker-shell.linux.args.1="--priveleged"
# The command-line flags `-m 1GB` will be applied only when running on macOS hosts
LABEL docker-shell.mac.args.1="-m"
LABEL docker-shell.mac.args.2="1GB"
# The command-line flags `-m 2GB` will be applied only when running on Windows hosts
LABEL docker-shell.windows.args.1="-m"
LABEL docker-shell.windows.args.2="2GB"
Legal
Copyright © 2020, Adam Rehn. Licensed under the MIT License, see the file LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file docker_shell-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: docker_shell-0.0.5-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4dc308a7f49e73369a208f26686ea94cbc6e9cef42b3964ffbc1cd7ef48fa9aa |
|
MD5 | 8d224ed39245f967f58f6733a84ecb21 |
|
BLAKE2b-256 | 14e0581bcd40f63b250baa6b77651f92afce5575a45d618f3b0d85c2503307c8 |