docker: Fix deprecated daemon option (-d)

This commit is contained in:
Nicolas Godinho 2016-02-05 11:01:42 +01:00
parent 20a85c9dc8
commit b53f6908a4
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
[ -r conf ] && . ./conf
modprobe -q loop || exit 1
exec chpst -o 1048576 -p 1048576 docker -d $OPTS 2>/dev/null
exec chpst -o 1048576 -p 1048576 docker daemon $OPTS 2>/dev/null

View File

@ -1,7 +1,7 @@
# Template file for 'docker'
pkgname=docker
version=1.10.0
revision=1
revision=2
hostmakedepends="git go"
makedepends="libbtrfs-devel sqlite-devel device-mapper-devel"
short_desc="Pack, ship and run any application as a lightweight container"