Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 641 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 641 Bytes

wosind-docker

this is the dockerfile for the project: https://github.com/whitelisthackers/wosind

build the docker

--- optional
mkdir /opt/docker && cd /opt/docker
git clone https://github.com/andreaseu/wosind-docker.git /opt/docker/wosind
cd /opt/docker/wosind
---

docker build -t wosind:local .

start the docker

docker run -it --rm wosind:local

--- start the bash
docker run -it --rm wosind:local bash

zsh or bash alias

tee -a ~/.zshrc > /dev/null << "EOF"
-- or
tee -a ~/.dotfiles/.my-zsh/aliases.zsh > /dev/null << "EOF"
alias wosind='docker run -it --rm wosind:local bash'
EOF

source ~/.zshrc