summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorromkatv <roman.perepelitsa@gmail.com>2020-01-14 11:10:05 +0300
committerromkatv <roman.perepelitsa@gmail.com>2020-01-14 11:10:05 +0300
commit8394e6338ed19f0549319bae99c65e8f31cf683b (patch)
tree7cebce27880772b246e4d82203175436419f2632 /README.md
parent437b624532f05b3a109c45ed024f2daa881ecfa1 (diff)
switch to debian in the docker demo
archlinux fails to install packages half the time error: key "Christian Hesse (Arch Linux Package Signing) <arch@eworm.de>" could not be imported This seems to be a long-standing bug in arch that hasn't been acknowledged. Users suffering from it are offered to to repeatedly wipe their keyring, reinitialize, and retry.
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 436b5fbf..bc53a6d2 100644
--- a/README.md
+++ b/README.md
@@ -176,8 +176,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 TERM -it --rm archlinux/base bash -uexc '
- pacman -Sy --noconfirm zsh git
+docker run -e TERM -it --rm debian:buster bash -uec '
+ apt update
+ apt install -y git zsh
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
echo "source ~/powerlevel10k/powerlevel10k.zsh-theme" >>~/.zshrc
cd ~/powerlevel10k