summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorromkatv <roman.perepelitsa@gmail.com>2019-10-04 09:00:06 +0300
committerromkatv <roman.perepelitsa@gmail.com>2019-10-04 09:00:06 +0300
commit2862e5f3950e449bc5cbffd00dd43a8806582ccb (patch)
treec53504edf559eb9e59ed46d34f4a7623973cf5c2 /README.md
parent6f11dca7d36415479ff26c7e37efed83dc13df9e (diff)
replace ubuntu with archlinux in the docker command; it's faster to install
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index de15a27e..15adbc61 100644
--- a/README.md
+++ b/README.md
@@ -155,9 +155,9 @@ Try Powerlevel10k in Docker. You can safely make any changes to the file system
the theme. Once you exit zsh, the image is deleted.
```zsh
-docker run -e LANG=C.UTF-8 -e LC_ALL=C.UTF-8 -e TERM -it --rm ubuntu bash -uexc '
- cd && apt update && apt install -y zsh git
- git clone https://github.com/romkatv/powerlevel10k.git
+docker run -e LANG=en_US.utf8 -e TERM -it --rm archlinux/base bash -uexc '
+ pacman -Sy --noconfirm zsh git
+ git clone https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
echo "source ~/powerlevel10k/powerlevel10k.zsh-theme" >>~/.zshrc
cd ~/powerlevel10k
exec zsh'