Reiniciando o nginx em um contêiner do Docker

3

Meu contêiner do Docker parece não ter o comando service . Como eu iria reiniciar nginx ?

Por exemplo

# uname -r
3.13.0-119-generic
bash-4.3# uname -a
Linux <container id> 3.13.0-119-generic #166-Ubuntu SMP Wed May 3 12:18:55 UTC 2017 x86_64 Linux
bash-4.3# service nginx restart
bash: service: command not found
    
por Snowcrash 26.06.2017 / 13:24

1 resposta

2

Isso depende de o seu contêiner estar executando systemd ou sysV ou upstart.

As escolhas válidas neste momento são

/etc/init.d/nginx restart

e

systemctl restart nginx
    
por sergtech 26.06.2017 / 13:32

Tags