@@ -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.5 /zsh-in-docker.sh)"
21
+ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.0 /zsh-in-docker.sh)"
22
22
```
23
23
24
24
#### Optional arguments:
@@ -35,7 +35,7 @@ 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.5 /zsh-in-docker.sh)" -- \
38
+ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.0 /zsh-in-docker.sh)" -- \
39
39
-a 'CASE_SENSITIVE="true"'
40
40
```
41
41
@@ -48,13 +48,13 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
48
48
49
49
``` Dockerfile
50
50
# Uses "robbyrussell" theme (original Oh My Zsh theme), with no plugins
51
- RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.5 /zsh-in-docker.sh)" -- \
51
+ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.0 /zsh-in-docker.sh)" -- \
52
52
-t robbyrussell
53
53
```
54
54
55
55
``` Dockerfile
56
56
# Uses "git", "ssh-agent" and "history-substring-search" bundled plugins
57
- RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.5 /zsh-in-docker.sh)" -- \
57
+ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.0 /zsh-in-docker.sh)" -- \
58
58
-p git -p ssh-agent -p 'history-substring-search' \
59
59
-a 'bindkey "\$ terminfo[kcuu1]" history-substring-search-up' \
60
60
-a 'bindkey "\$ terminfo[kcud1]" history-substring-search-down'
@@ -63,7 +63,7 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/
63
63
64
64
``` Dockerfile
65
65
# Uses "Spaceship" theme with some customization. Uses some bundled plugins and installs some more from github
66
- RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.1.5 /zsh-in-docker.sh)" -- \
66
+ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/v1.2.0 /zsh-in-docker.sh)" -- \
67
67
-t https://github.com/denysdovhan/spaceship-prompt \
68
68
-a 'SPACESHIP_PROMPT_ADD_NEWLINE="false"' \
69
69
-a 'SPACESHIP_PROMPT_SEPARATE_LINE="false"' \
0 commit comments