Sent from my iPhone 📱
> On 12 Dec 2016, at 22:32, Gerard Iglesias <gerard_igles...@me.com> wrote:
> 
> Hello,
> 
> Something important to note, i have created an image from scratch installing 
> emacs in place of vim.
> 
> But to get swift working we have to run the image with privilege access like 
> this 
> 
> docker run -ti --privileged=true theImageName
> 
> Unless we get an error when running the REPL

Yes, if you want to run the repl or lldb then you either need --privileged or 
--security-opt seccomp:unconfined and --cap-add SYS_PTRACE. 

You might also want to specify --rm which will remove your containers runtime 
image afterwards, as otherwise you will end up with many nearly identical 
copies of your container on disk. 

Alex 
_______________________________________________
swift-users mailing list
swift-users@swift.org
https://lists.swift.org/mailman/listinfo/swift-users

Reply via email to