Skip to content

Commit 412f31c

Browse files
committed
Update README
1 parent c1f36a2 commit 412f31c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ One line installation: add the following line in your `Dockerfile`:
1818

1919
```Dockerfile
2020
# Default powerline10k theme, no plugins installed
21-
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.3/zsh-in-docker.sh)"
21+
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.4/zsh-in-docker.sh)"
2222
```
2323

2424
#### Optional arguments:
@@ -35,21 +35,21 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
3535
For example, if you want to enable [case sensitive completion](https://stackoverflow.com/a/28021691):
3636

3737
```Dockerfile
38-
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.3/zsh-in-docker.sh)" -- \
38+
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.4/zsh-in-docker.sh)" -- \
3939
-a 'CASE_SENSITIVE="true"'
4040
```
4141

4242
#### Examples:
4343

4444
```Dockerfile
4545
# Uses "robbyrussell" theme (original Oh My Zsh theme), with no plugins
46-
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.3/zsh-in-docker.sh)" -- \
46+
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.4/zsh-in-docker.sh)" -- \
4747
-t robbyrussell
4848
```
4949

5050
```Dockerfile
5151
# Uses "git", "ssh-agent" and "history-substring-search" bundled plugins
52-
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.3/zsh-in-docker.sh)" -- \
52+
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.4/zsh-in-docker.sh)" -- \
5353
-p git -p ssh-agent -p 'history-substring-search' \
5454
-a 'bindkey "\$terminfo[kcuu1]" history-substring-search-up' \
5555
-a 'bindkey "\$terminfo[kcud1]" history-substring-search-down'
@@ -58,7 +58,7 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
5858

5959
```Dockerfile
6060
# Uses "Spaceship" theme with some customization. Uses some bundled plugins and installs some more from github
61-
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.3/zsh-in-docker.sh)" -- \
61+
RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.4/zsh-in-docker.sh)" -- \
6262
-t https://github.com/denysdovhan/spaceship-prompt \
6363
-a 'SPACESHIP_PROMPT_ADD_NEWLINE="false"' \
6464
-a 'SPACESHIP_PROMPT_SEPARATE_LINE="false"' \

0 commit comments

Comments
 (0)