https://github.com/izifortune/docker-gollum-basic-auth
A Dockerfile to install gollum with basic authentication support
https://github.com/izifortune/docker-gollum-basic-auth
auth docker gollum
Last synced: 3 months ago
JSON representation
A Dockerfile to install gollum with basic authentication support
- Host: GitHub
- URL: https://github.com/izifortune/docker-gollum-basic-auth
- Owner: izifortune
- Created: 2017-09-30T11:29:40.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-01T09:50:54.000Z (about 8 years ago)
- Last Synced: 2025-04-03T13:24:20.219Z (7 months ago)
- Topics: auth, docker, gollum
- Language: Ruby
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Dockerfile to install and start a [gollum](https://github.com/gollum/gollum)
instance.Inspired by https://github.com/suttang/docker-gollum
This docker container has support for basic auth using `auth.rb` file.
You can pass your own `USERNAME` and `PASSWORD` as environment variables.## Install
```
docker pull izifortune/docker-gollum-basic-auth
```## Use
### Run container simply
```
sudo docker run -d -p 80:4567 -e USERNAME=admin -e PASSWORD=admin --name gollum izifortune/docker-gollum-basic-auth
```admin/admin will be your username and password
### You can attach some options
sudo docker run -d -P --name gollum izifortune/docker-gollum-basic-auth --allow-uploads --live-preview
To add more options , checkout this link [gollum options](https://github.com/gollum/gollum#running).
### Use wikidata in host filesystem
```
sudo docker run -d -P -v ~/wikidata:/root/wikidata izifortune/docker-gollum-basic-auth
```