Skip to content

Commit

Permalink
Correct README
Browse files Browse the repository at this point in the history
  • Loading branch information
Colonial-Dev committed Jan 14, 2025
1 parent 5d8876e commit 93294dd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ for my development containers.
FROM fedora-toolbox:latest

# Copy my user into the container.
PRESET preset cp-user $USER
PRESET cp-user
# Fix Unix and SELinux permission issues with rootless mounting of host files.
PRESET preset bind-fix
PRESET bind-fix
# Mount the SSH agent socket into the container. (Implies bind-fix)
PRESET preset ssh-agent
PRESET ssh-agent

# Copy my GNU Stow .dotfiles directory into the container.
ADD --chown $USER:$USER -- $HOME/.dotfiles /home/$USER/.dotfiles
Expand Down Expand Up @@ -152,8 +152,8 @@ RUN mkdir -p /home/$USER/.local/bin
#
# Combined with setting CARGO_INSTALL_ROOT, this means I can 'cargo install' binaries
# inside the container and use them outside it.
tankcfg mount type=bind,src=$HOME/Documents/Projects,dst=/home/$USER/Projects
tankcfg mount type=bind,src=$HOME/.local/bin/cargo,dst=/home/$USER/.cargo/install/bin
CFG mount type=bind,src=$HOME/Documents/Projects,dst=/home/$USER/Projects
CFG mount type=bind,src=$HOME/.local/bin/cargo,dst=/home/$USER/.cargo/install/bin

# Commit the container, basing the name on the symlink used to invoke this definition.
COMMIT localhost/rust
Expand Down

0 comments on commit 93294dd

Please sign in to comment.