2018-11-05 10:31:38 +11:00
2018-10-23 15:08:14 +11:00
2018-11-05 10:31:38 +11:00
2018-11-05 10:31:38 +11:00
2018-11-04 11:13:46 +00: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
cd snibox-sqlite
docker build -t snibox .

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

After first run you probably will see error due to database hasn't been initialized in the attached volume. Pleas run following command to create empty database:

docker exec <container_id> /app/bin/rails db:migrate

This will create new database instance and Snibox is ready to go.

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