Skip to content

Commit

Permalink
Merge branch 'release/v1.1.1'
Browse files Browse the repository at this point in the history
SecurityOptions eklendi
  • Loading branch information
MuhammetDilmac committed Jan 8, 2017
2 parents dbaa0ce + 41d4621 commit 0adca87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gonullu/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def start(self):
self.my_client = Client(base_url='unix://var/run/docker.sock', version='1.23')

# container'ımızın host configlerini yapalım.
self.host_config = self.my_client.create_host_config(mem_limit='%sM' % self.memory_limit, binds=self.binds)
self.host_config = self.my_client.create_host_config(mem_limit='%sM' % self.memory_limit, binds=self.binds, security_opt=['seccomp:unconfined'])
# hadi şimdi aynı isimle bir containerımız var mı görelim.
self.control_docker()
# kullanılacak imaj son sürüme yükseltelim
Expand Down Expand Up @@ -143,4 +143,4 @@ def exit_signal(self, signal, frame):

self.log.blank_line()
self.log.warning(message='CTRL+C\'ye tıkladınız!')
self.log.get_exit()
self.log.get_exit()

0 comments on commit 0adca87

Please sign in to comment.