Add /lib/firmware to the app bind mounts

This commit is contained in:
Pablo Carranza Vélez 2015-08-06 16:18:35 +00:00
parent 5ae28e9348
commit 5d5f38ea69

View File

@ -174,6 +174,7 @@ exports.start = start = (app) ->
Volumes:
'/data': {}
'/lib/modules': {}
'/lib/firmware': {}
'/run/dbus': {}
Env: _.map env, (v, k) -> k + '=' + v
ExposedPorts: ports
@ -205,6 +206,7 @@ exports.start = start = (app) ->
Binds: [
'/resin-data/' + app.appId + ':/data'
'/lib/modules:/lib/modules'
'/lib/firmware:/lib/firmware'
'/run/dbus:/run/dbus'
'/var/run/docker.sock:/run/docker.sock'
'/etc/resolv.conf:/etc/resolv.conf:rw'