Files
snibox-sqlite/README.md
2018-10-29 14:14:39 +11:00

21 lines
616 B
Markdown

# snibox-sqlite
Snibox container working with SQLite3 database for personal use
To run this container use following parameters:
```bash
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:
```bash
docker exec <container_id> /app/bin/rails db:migrate
```
This will create new database instance and Snibox is ready to go.