mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
deal with firewalld/docker startup issues
added the firewalld.service symbol in the After line docker will always start after firewalld, thus eliminating the issue of firewall blocking all mapped traffic. Signed-off-by: Ramon Brooker <Ramon.Brooker@imaginecommunications.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
2a540c18b6
commit
73e08286f9
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Docker Application Container Engine
|
Description=Docker Application Container Engine
|
||||||
Documentation=https://docs.docker.com
|
Documentation=https://docs.docker.com
|
||||||
After=network.target docker.socket
|
After=network.target docker.socket firewalld.service
|
||||||
Requires=docker.socket
|
Requires=docker.socket
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Docker Application Container Engine
|
Description=Docker Application Container Engine
|
||||||
Documentation=https://docs.docker.com
|
Documentation=https://docs.docker.com
|
||||||
After=network.target
|
After=network.target firewalld.service
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=notify
|
Type=notify
|
||||||
|
|
Loading…
Reference in a new issue