2019-02-06 14:30:43 +11:00
2018-12-22 05:21:01 +00:00
2018-12-07 22:13:56 +11:00
2018-11-07 22:06:03 +11:00
2019-02-06 14:30:43 +11:00
2019-02-06 14:30:43 +11:00
2018-12-07 22:22:59 +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 pull ready to use image from Docker Hub

docker pull snowmean/snibox-sqlite:latest

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

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

To run this container you might use following command:

docker run -d --name snibox \
              --volume /path/to/local/db:/app/db/database \
              --publish 80:3000 \
              --restart always \
              snowmean/snibox-sqlite
Description
No description provided
Readme 57 KiB
Languages
Ruby 57.5%
Dockerfile 42.5%