1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Document using the Dockerfile for interactive dev/test cycles

This commit is contained in:
Solomon Hykes 2013-09-06 20:16:13 -07:00
parent 47838051be
commit d757bd0904

View file

@ -7,6 +7,10 @@
# # Apparmor messes with privileged mode: disable it # # Apparmor messes with privileged mode: disable it
# /etc/init.d/apparmor stop ; /etc/init.d/apparmor teardown # /etc/init.d/apparmor stop ; /etc/init.d/apparmor teardown
# #
# # Mount your source in an interactive container for quick testing:
# docker run -v `pwd`:/go/src/github.com/dotcloud/docker -privileged -lxc-conf=lxc.aa_profile=unconfined -i -t docker bash
#
#
# # Run the test suite: # # Run the test suite:
# docker run -privileged -lxc-conf=lxc.aa_profile=unconfined docker go test -v # docker run -privileged -lxc-conf=lxc.aa_profile=unconfined docker go test -v
# #