mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
565 B
565 B
Fn using MySQL DB
Let's presuppose you don't have even a MySQL DB ready.
1. Let's start a MySQL instance:
docker run --name func-mysql \
-e MYSQL_DATABASE=funcs -e MYSQL_USER=func -e MYSQL_PASSWORD=funcpass -d mysql
For more configuration options, see docker mysql docs.
2. Now let's start Functions connecting to our new mysql instance
docker run --rm --privileged --link "iron-mysql:mysql" \
-e "DB_URL=mysql://func:funcpass@tcp(mysql:3306)/funcs" \
-it -p 8080:8080 fnproject/fn