Skip to content

Commit

Permalink
Fix permission issues with docker mount, and update related (#124)
Browse files Browse the repository at this point in the history
documentation
  • Loading branch information
pcmxgti committed May 19, 2023
1 parent 888d0e8 commit 1f17183
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 15 deletions.
14 changes: 11 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,22 @@ ENV PYTHONDONTWRITEBYTECODE=1
# Turns off buffering for easier container logging
ENV PYTHONUNBUFFERED=1

# Turn off PIP warnings
ENV PIP_DISABLE_PIP_VERSION_CHECK=1
ENV PIP_ROOT_USER_ACTION=ignore

# Install pip requirements
COPY . /app
RUN python -m pip install -r /app/requirements.txt
RUN apk add --update --no-cache shadow && \
rm -rf /var/cache/apk/* && \
python3 -m pip install -r /app/requirements.txt

WORKDIR /app

# Creates a non-root user with an explicit UID and adds permission to access the /app folder
RUN adduser -u 5678 --disabled-password --gecos "" tokendito && chown -R tokendito /app
RUN adduser -u 5678 --disabled-password --gecos "Tokendito" -h /app -H tokendito && \
chown -R tokendito:tokendito /app

USER tokendito

ENTRYPOINT ["python", "tokendito/tokendito.py"]
ENTRYPOINT ["python3", "tokendito/tokendito.py"]
31 changes: 19 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ your AWS accounts, returning
tokens into your local `~/.aws/credentials` file.

## What's new
With the release of tokendito 2.0, many changes and fixes were introduced. It is a breaking release: your configuration needs to be updated, the command line arguments have changed, and support for python < 3.7 has been removed.
With the release of tokendito 2.0, many changes and fixes were introduced. It is a breaking release: your configuration needs to be updated, the command line arguments have changed, and support for Python < 3.7 has been removed.
The following changes are part of this release:
- Set the config file to be platform dependent, and follow the XDG standard.
- Extend configuration capabilities.
Expand Down Expand Up @@ -77,31 +77,38 @@ then
docker run --rm -it tokendito/tokendito --version
```

You must map a volume in the Docker command to allow tokendito to write AWS credentials to your local system for use. This is done with the `-v` flag. See [Docker documentation](https://docs.docker.com/engine/reference/commandline/run/#-mount-volume--v---read-only) for help setting the syntax. The following directories are used by tokendito and should be considered when mapping volumes:
You must map a volume in the Docker command to allow tokendito to write AWS credentials to your local filesystem for use. This is done with the `-v` flag. See [Docker documentation](https://docs.docker.com/engine/reference/commandline/run/#-mount-volume--v---read-only) for help setting the syntax. The following directories are used by tokendito and should be considered when mapping volumes:

- `/home/tokendito/.aws/` (AWS credential storage)
- `/home/tokendito/.config/tokendito/` (tokendito profile storage)
- `/app/.aws/` (AWS credential storage)
- `/app/.config/tokendito/` (tokendito profile storage)

These can be covered by mapping a single volume to both the host and container users' home directories (`/home/tokendito/` is the home directory in the container and must be explicitly defined). You may also map multiple volumes if you have custom configuration locations and require granularity.
These can be covered by mapping a single volume to both the host and container users' home directories (`/app` is the home directory in the container and must be explicitly defined). You may also map multiple volumes if you have custom configuration locations and require granularity.

Be sure to set the `-it` flags to enable an interactive terminal session.

In a Linux system, you can run:
On Windows, you can do the following:
``` powershell
docker run --rm -it -v "%USERPROFILE%\.aws":/app/.aws -v "%USERPROFILE%\.config":/app/.config tokendito/tokendito
```

In a Mac OS system, you can run:
``` shell
docker run --rm -it -v "$HOME/.aws":/home/tokendito/.aws -v "$HOME/.config":/home/tokendito/.config tokendito/tokendito
docker run --rm -it -v "$HOME/.aws":/app/.aws -v "$HOME/.config":/app/.config tokendito/tokendito
```

On Windows, you can do the following instead:
``` powershell
docker run --rm -it -v "%USERPROFILE%\.aws":/home/tokendito/.aws -v "%USERPROFILE%\.config":/home/tokendito/.config tokendito/tokendito
On a Linux system, however, you must specify the user and group IDs for the mount mappings to work as expected.
Additionally the mount points within the container move to a different location:

``` shell
docker run --user $(id -u):$(id -g) --rm -it -v "$HOME/.aws":/.aws -v "$HOME/.config":/.config tokendito/tokendito
```

Tokendito command line arguments are supported as well.

**NOTE**: In the following examples the entire home directory is exported for simplicity. This is not recommended as it exposes too much data to the running container:

``` shell
docker run --rm -it -v "$HOME":/home/tokendito/ tokendito/tokendito \
docker run --rm -it -v "$HOME":/ tokendito/tokendito \
--okta-tile https://acme.okta.com/home/amazon_aws/000000000000000000x0/123 \
--username username@example.com \
--okta-mfa push \
Expand All @@ -114,7 +121,7 @@ docker run --rm -it -v "$HOME":/home/tokendito/ tokendito/tokendito \
Tokendito profiles are supported while using containers provided the proper volume mapping exists.

``` shell
docker run --rm -ti -v "$HOME":/home/tokendito tokendito/tokendito \
docker run --rm -ti -v "$HOME":/app tokendito/tokendito \
--profile my-profile-name
```

Expand Down

0 comments on commit 1f17183

Please sign in to comment.