This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pre-requisite: | |
- git installed https://git-scm.com/download/win | |
- docker-machine installed | |
me@computer $ docker-machine rm default | |
me@computer $ docker-machine create -d virtualbox --virtualbox-memory="1024" --virtualbox-cpu-count="1" --virtualbox-disk-size="20480" --virtualbox-host-dns-resolver=true default | |
me@computer $ docker-machine stop default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM java:8 | |
MAINTAINER Matthieu Brouillard [email protected] | |
LABEL version=3.8 | |
ENV GITBUCKET_HOME=/var/gitbucket | |
ENV GITBUCKET_APP=/opt/gitbucket/webapp | |
RUN mkdir -p $GITBUCKET_APP | |
RUN mkdir -p $GITBUCKET_HOME/plugins |
NewerOlder