2018-12-07 22:13:56 +11:00
2018-12-07 22:13:56 +11:00
2018-11-07 22:06:03 +11:00
2018-11-05 10:31:38 +11:00

snibox-sqlite

Snibox container working with SQLite3 database for personal use

To build this container use following command:

git clone https://gitlab.com/pivpav/snibox-sqlite.git
docker build -t snibox ./snibox-sqlite

Alternatively you can use ready to use image

docker pull snowmean/snibox-sqlite:latest

To run this container use following parameters:

docker run -d --name snibox \
              --volume /path/to/local/db:/app/db/database \
              --publish 80:3000 \
              --restart always \
              snibox

Default database file location is /app/db/database/snibox.sqlite3, however you can redefine it by using environment variable DATABASE.

Container is running rake db:migrate on every start, in order to either create database if not exist, or update database scheme if required, so backups are highly recommended.

Description
No description provided
Readme 57 KiB
Languages
Ruby 57.5%
Dockerfile 42.5%