1

Docker caches the latest version on my machine, I know I can do docker pull on it, but is there a way to do it via the command line tool?

Jonas
  • 121,568
  • 97
  • 310
  • 388
Travis Reeder
  • 38,611
  • 12
  • 87
  • 87

2 Answers2

3

With the command line tool, you can run:

fn update

Or without it:

docker pull fnproject/functions:latest
Travis Reeder
  • 38,611
  • 12
  • 87
  • 87
0

For Fn CLI V0.5.15 and presumably higher use

fn update server

Stuart Clark
  • 611
  • 8
  • 13