Fix #6643 - Add privileged notes on dockerfile

This commit is contained in:
pancake 2017-02-03 10:55:45 +01:00
parent d26d7bdf5d
commit 95249b8237
1 changed files with 6 additions and 0 deletions

View File

@ -21,6 +21,12 @@
# $ docker export <containerid> | xz > container.xz
# $ xz -d < container.xz | docker import -
#
#
# If you willing to debug a program within Docker, you should run it in privileged mode:
#
# $ docker run -it --privileged radare/radare2
# $ r2 -d /bin/true
#
# using phusion/baseimage as base image.
FROM ubuntu