Files
fn-serverless/docs/operating/databases/boltdb.md
2017-01-24 11:20:51 -08:00

11 lines
263 B
Markdown

# IronFunctions using BoltDB
BoltDB is the default database, you just need to run the API.
## Persistent
To keep it persistent, add a volume flag to the command:
```
docker run --rm -it --privileged -v $PWD/bolt.db:/app/bolt.db -p 8080:8080 iron/functions
```