Added Gollum with a build file

This commit is contained in:
Ash Leece 2020-06-27 17:28:58 +00:00
parent 8ca94eb353
commit 335c0524e0
2 changed files with 15 additions and 0 deletions

8
gollum/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM ruby
RUN apt-get -y update && apt-get -y install libicu-dev cmake && rm -rf /var/lib/apt/lists/*
RUN gem install github-linguist
RUN gem install gollum
RUN gem install org-ruby # optional
WORKDIR /wiki
ENTRYPOINT ["gollum", "--port", "80"]
EXPOSE 80

View File

@ -0,0 +1,7 @@
version: '3'
services:
gollum:
build: .
ports:
- "8080:80"
restart: unless-stopped