This repository contains the Dockerfile and automated configuration file to create an Obsidian scheduler standalone instance.
tomcat:jre8 from DockerHub
Install Docker.
Download automated build from public DockerHub Registery:
docker pull enmobile/obsidian
Alternatively, you can build an image directly from this repository:
docker build -t="enmobile/obsidian" github.com/EnMobile/docker-obsidian
##Usage
docker run -d -p 80:8080 enmobile/obsidian
Default user / password are "admin" / "changeme" (see the Obsidian Scheduler wiki for more information)
##Customization
docker run -d -p 80:8080 -v <path-to/location-to-persist/tasks-and-config>:/mnt/db/obsidian enmobile/obsidian
where <path-to/location-to-persist/tasks-and-config> is an absolute path of a directory to store the H2 database that contains Obsidian task configuration and history
See the docker-compose.yaml file in this repository for a quick example. Consider adding a volume: section!
volumes:
- db/obsidian:/mnt/db/obsidian
After few seconds, open http://<host>:<port> to see the Obsidian admin console and log in using "admin" / "changeme".