mirror of
https://github.com/luzifer-ansible/docker-compose.git
synced 2024-11-08 13:39:59 +00:00
Remove deprecated option --parallel
docker-compose 1.21.0 deprecated the flag as it is now the default behaviour. This change removes the flag and therefore the deprecation warning from the logs Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
e18f64af71
commit
5edb7e5e38
1 changed files with 2 additions and 2 deletions
|
@ -64,12 +64,12 @@
|
||||||
Type=oneshot
|
Type=oneshot
|
||||||
RemainAfterExit=yes
|
RemainAfterExit=yes
|
||||||
|
|
||||||
ExecStartPre=/usr/local/bin/docker-compose pull --quiet --parallel --ignore-pull-failures
|
ExecStartPre=/usr/local/bin/docker-compose pull --quiet --ignore-pull-failures
|
||||||
ExecStart=/usr/local/bin/docker-compose up -d --remove-orphans
|
ExecStart=/usr/local/bin/docker-compose up -d --remove-orphans
|
||||||
|
|
||||||
ExecStop=/usr/local/bin/docker-compose down
|
ExecStop=/usr/local/bin/docker-compose down
|
||||||
|
|
||||||
ExecReload=/usr/local/bin/docker-compose pull --quiet --parallel --ignore-pull-failures
|
ExecReload=/usr/local/bin/docker-compose pull --quiet --ignore-pull-failures
|
||||||
ExecReload=/usr/local/bin/docker-compose up -d --remove-orphans
|
ExecReload=/usr/local/bin/docker-compose up -d --remove-orphans
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
|
|
Loading…
Reference in a new issue