@@ -18,7 +18,7 @@ One line installation: add the following line in your `Dockerfile`:
18
18
19
19
``` Dockerfile
20
20
# 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)"
22
22
```
23
23
24
24
#### Optional arguments:
@@ -35,21 +35,21 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
35
35
For example, if you want to enable [ case sensitive completion] ( https://stackoverflow.com/a/28021691 ) :
36
36
37
37
``` 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)" -- \
39
39
-a 'CASE_SENSITIVE="true"'
40
40
```
41
41
42
42
#### Examples:
43
43
44
44
``` Dockerfile
45
45
# 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)" -- \
47
47
-t robbyrussell
48
48
```
49
49
50
50
``` Dockerfile
51
51
# 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)" -- \
53
53
-p git -p ssh-agent -p 'history-substring-search' \
54
54
-a 'bindkey "\$ terminfo[kcuu1]" history-substring-search-up' \
55
55
-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/
58
58
59
59
``` Dockerfile
60
60
# 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)" -- \
62
62
-t https://github.com/denysdovhan/spaceship-prompt \
63
63
-a 'SPACESHIP_PROMPT_ADD_NEWLINE="false"' \
64
64
-a 'SPACESHIP_PROMPT_SEPARATE_LINE="false"' \
0 commit comments