标签: directory

2 篇文章

Could not find method compile() for arguments [directory ‘./lib/‘] on object
from--https://blog.csdn.net/weixin_38106322/article/details/122893719   gradle项目编译时报的错,没学过gradle,所以具体原因看不出来,猜测是版本原因,这里只分享下解决方案。 bulid.gradle原信息是: 修改compile为implementation,如下: 之后即可编译成功
thumbnail
Starting container process caused “exec: \\”tail -f /dev/null\\”: stat tail -f /dev/null: no such file or directory
from--https://stackoverflow.com/questions/51398251/starting-container-process-caused-exec-tail-f-dev-null-stat-tail-f   Ask Question Asked 5 years, 1 month ago Modified 1 year, 6 months ago Viewed 2k times 2 Because I am trying to keep a container running I specified the "tail -f /dev/null" as command in the docker compose file: version: '2' services: serviceName: . .…