MySQL or SQLite Support, Ready to Go.
604
#wallabag-docker Dockerfile used to build a wallabag docker image.
##Credits I forked this from bobmaerten/docker-wallabag, and made several changes to accomodate MySQL as an option.
Wallabag is an opensource project created by @nicosomb
This docker image is build upon the baseimage made by phusion.
##Image Details
##Docker Base Image This image is based on phusion/baseimage-docker
##Installation ###Download If you want to prefetch the image to store locally before deploying you should run the following:
docker pull neosar/wallabag-docker
###Running To Run a Basic Instance
docker run -d -p 80:80 neosar/wallabag-docker
To Run a Named Instance Linked to a MySQL Container
docker run --name wallabag --link sqlcontainer:sqlcontainer -p 80:80 -d neosar/wallabag-docker
To Run a Named Instance with a Persistent SQLite Database
docker run --name wallabag -p 80:80 -v /path/to/your/storage:/wallabag/db -d neosar/wallabag-docker
To Pass a Custom Salt Value to the Config (Highly Recommended)
docker run --name wallabag -p 80:80 -e WALLABAG_SALT=somesaltvaluemuchmoresecurethanthis -d neosar/wallabag-docker
Check the phusion/baseimage documentation for all kind of additional options and switches.
###Usage
###Volumes I have symlinked /wallabag to it's full path (/var/www/wallabag) and exposed it as a volume for easier access.
Clone Git Repository
Enter Repo Directory
cd wallabag-docker
Build Image
sudo docker build -t docker-wallabag .
Content type
Image
Digest
sha256:60b7fb0f3…
Size
195.6 MB
Last updated
almost 11 years ago
docker pull neosar/wallabag-docker