当curl无法调用API时,如何重启服务器的docker容器? 我准备了这样的docker-compose.yml文件。
server:
build: server
command:
- run
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost/ && echo 'cool, it works'"]
interval: 5s
timeout: 5s
retries: 3
感谢!!!!!