6 changed files with 40 additions and 23 deletions
@ -1,14 +1,10 @@ |
|||||||
FROM alvisisme/docker-ubuntu-1604-163 |
FROM alvisisme/docker-ubuntu-1604-163 |
||||||
|
|
||||||
LABEL maintainer="Alvis Zhao <alvisisme@163.com>" |
LABEL maintainer="Alvis Zhao <alvisisme@163.com>" |
||||||
|
|
||||||
RUN apt-get update && \ |
RUN apt-get update && \ |
||||||
DEBIAN_FRONTEND=noninteractive apt-get install -y vim zsh tmux |
DEBIAN_FRONTEND=noninteractive apt-get install -y git vim zsh tmux |
||||||
|
|
||||||
COPY zsh /root/.oh-my-terminal/zsh |
COPY ./ /root/.oh-my-terminal/ |
||||||
COPY tmux /root/.oh-my-terminal/tmux |
RUN sh /root/.oh-my-terminal/install.sh |
||||||
COPY vim /root/.oh-my-terminal/vim |
|
||||||
COPY setup.sh /root/.oh-my-terminal/setup.sh |
|
||||||
RUN sh /root/.oh-my-terminal/setup.sh |
|
||||||
|
|
||||||
ENTRYPOINT [ "/bin/zsh" ] |
ENTRYPOINT [ "/bin/zsh" ] |
@ -0,0 +1,8 @@ |
|||||||
|
#!/bin/bash |
||||||
|
|
||||||
|
rm -f ~/.tmux.conf |
||||||
|
rm -f ~/.tmux.conf.local |
||||||
|
rm -f ~/.oh-my-zsh |
||||||
|
rm -f ~/.vim_runtime |
||||||
|
rm -f ~/.vimrc |
||||||
|
rm -f ~/.zshrc |
Loading…
Reference in new issue