Remove unused config.supervisorContainer in config.coffee

This commit is contained in:
Praneeth Bodduluri 2015-09-24 01:34:00 +05:30 committed by Pablo Carranza Vélez
parent bd889e06a1
commit 66a4bf4ab3
2 changed files with 1 additions and 16 deletions

View File

@ -1,3 +1,4 @@
* Remove unused config.supervisorContainer in config.coffee [Praneeth]
* Bind mount /boot in Raspberry Pis [Pablo]
* Implement and use golang endpoint for getting IPs of the device, also fixes duplicate IP reporting in the JS implementation [Praneeth]
* Refactor bootstrapping to run in background [Pablo]

View File

@ -26,19 +26,3 @@ module.exports = config =
successMessage: 'SUPERVISOR OK'
forceApiSecret: process.env.RESIN_SUPERVISOR_SECRET ? null
vpnStatusPath: process.env.VPN_STATUS_PATH ? '/mnt/root/run/openvpn/vpn_status'
config.supervisorContainer =
Volumes:
'/boot/config.json': {}
'/data': {}
'/run/docker.sock': {}
'/mnt/fib_trie': {}
'/var/log': {}
Binds: [
config.configMountPoint + ':/boot/config.json'
'/var/run/docker.sock:/run/docker.sock'
'/resin-data/resin-supervisor:/data'
'/proc/net/fib_trie:/mnt/fib_trie'
'/var/log/supervisor-log:/var/log'
'/etc/resolv.conf:/etc/resolv.conf:rw'
]