diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2020-03-29 15:18:16 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2020-03-29 15:18:16 +0300 |
commit | 8573855d3966bb878eb853d3747b4384e19f7889 (patch) | |
tree | 02472846b4844c656754601737874fdb9ebc1ee8 /README.md | |
parent | 2648292323b22c817c417db260c8941f561c8219 (diff) |
replace debian with alpine in the docker demo (starts much faster)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -544,9 +544,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 -e COLORTERM -it --rm debian:buster bash -uec ' - apt update - apt install -y git zsh nano vim +docker run -e TERM -e COLORTERM -it --rm alpine sh -uec ' + apk update + apk add git zsh nano vim git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k echo "source ~/powerlevel10k/powerlevel10k.zsh-theme" >>~/.zshrc cd ~/powerlevel10k |