334df62651
- Adds a Dockerfile within this repository - GitHub actions to build and test the image
10 lines
115 B
Bash
Executable File
10 lines
115 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Initialize the wiki
|
|
if [ ! -d .git ]; then
|
|
git init
|
|
fi
|
|
|
|
# Start gollum service
|
|
gollum --mathjax
|