From 85e813bead191109bfc0029465ef81a8310e08c9 Mon Sep 17 00:00:00 2001 From: Hina <44663281+nutshoekey@users.noreply.github.com> Date: Tue, 26 Dec 2023 20:44:49 +0800 Subject: [PATCH] Update build-vyos.rst Corrected small error in docker alias, missing . in front of ".gitconfig" --- docs/contributing/build-vyos.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contributing/build-vyos.rst b/docs/contributing/build-vyos.rst index d7c9ce3657..3d5eea4bd2 100644 --- a/docs/contributing/build-vyos.rst +++ b/docs/contributing/build-vyos.rst @@ -158,7 +158,7 @@ per release train (`current` or `crux`) - container. Add the following to your alias vybld='docker pull vyos/vyos-build:current && docker run --rm -it \ -v "$(pwd)":/vyos \ - -v "$HOME/.gitconfig":/etc/gitconfig \ + -v "$HOME/.gitconfig":/etc/.gitconfig \ -v "$HOME/.bash_aliases":/home/vyos_bld/.bash_aliases \ -v "$HOME/.bashrc":/home/vyos_bld/.bashrc \ -w /vyos --privileged --sysctl net.ipv6.conf.lo.disable_ipv6=0 \ @@ -167,7 +167,7 @@ per release train (`current` or `crux`) - container. Add the following to your alias vybld_crux='docker pull vyos/vyos-build:crux && docker run --rm -it \ -v "$(pwd)":/vyos \ - -v "$HOME/.gitconfig":/etc/gitconfig \ + -v "$HOME/.gitconfig":/etc/.gitconfig \ -v "$HOME/.bash_aliases":/home/vyos_bld/.bash_aliases \ -v "$HOME/.bashrc":/home/vyos_bld/.bashrc \ -w /vyos --privileged --sysctl net.ipv6.conf.lo.disable_ipv6=0 \