Skip to content

Instantly share code, notes, and snippets.

View andersonpem's full-sized avatar
🤓
Always living and learning

AndersonPEM andersonpem

🤓
Always living and learning
View GitHub Profile
@andersonpem
andersonpem / Dockerfile
Created December 18, 2019 03:41
Installing ZSH and oh-my-zsh on Laradock's workspace.
#Add zsh to the applications being installed
##...
libzip-dev zip unzip zsh \
# Change the shell of both users
USER root
RUN usermod --shell $(which zsh) laradock
RUN usermod --shell $(which zsh) root
#Install oh-my-zsh for both users