do not require privileged iso container

* The init call w/ privileged was causing my laptop to wig out. This
changeset still functions w/ out requiring privileged access.
This commit is contained in:
chris meyers 2018-05-31 09:37:38 -04:00
parent 8d352a4edf
commit 9863fe71dc
2 changed files with 6 additions and 1 deletions

View File

@ -14,4 +14,6 @@ services:
- "../awx/main/expect:/awx_devel"
- "../awx/lib:/awx_lib"
- "/sys/fs/cgroup:/sys/fs/cgroup:ro"
privileged: true
tmpfs:
- "/tmp:exec"
- "/run"

View File

@ -27,4 +27,7 @@ RUN ssh-keygen -A
RUN mkdir -p /root/.ssh
RUN touch /root/.ssh/authorized_keys
STOPSIGNAL SIGRTMIN+3
CMD ["/usr/sbin/init"]