mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
12 lines
257 B
Markdown
12 lines
257 B
Markdown
# Fn using SQLite3
|
|
|
|
SQLite3 is the default database, you just need to run the API.
|
|
|
|
## Persistent
|
|
|
|
To keep it persistent, add a volume flag to the command:
|
|
|
|
```sh
|
|
docker run --rm -it --privileged -v $PWD/fn.db:/app/fn.db -p 8080:8080 fnproject/fnserver
|
|
```
|