docker [container] stop <name>
после этого заработает docker container prune -f
иdocker image prune -f
docker container prune -f
docker image prune -f
docker system prune -f
/c/Program\ Files/7-Zip/7z.exe l ~/.m2/repository/com/github/sarxos/v4l4j/0.9.1-r507/v4l4j-0.9.1-r507.jar | grep 'com\\github\\sarxos\\v4l4j\\V4L4J.class'
2015-02-19 19:54:26 ..... 1946 1107 com\github\sarxos\v4l4j\V4L4J.class
docker run -it -p 8080:8080 tomcat:8.0-alpine
....
19-Aug-2020 12:32:47.773 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["http-apr-8080"]
19-Aug-2020 12:32:47.835 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["ajp-apr-8009"]
19-Aug-2020 12:32:47.911 INFO [main] org.apache.catalina.startup.Catalina.start Server startup in 3629 ms
curl -I http://127.0.0.1:8080
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Type: text/html;charset=UTF-8
Transfer-Encoding: chunked
Date: Wed, 19 Aug 2020 12:32:55 GMT
curl http://127.0.0.1:8080 2>/dev/null| lynx -stdin -dump | head -10
[1]Home [2]Documentation [3]Configuration [4]Examples [5]Wiki
[6]Mailing Lists [7]Find Help
Apache Tomcat/8.0.53
If you're seeing this, you've successfully installed Tomcat.
day_label=\u0434\u0435\u043d\u044c
month_label=\u043c\u0435\u0441\u044f\u0446
year_label=\u0433\u043e\u0434
<Label text="%date_label" GridPane.columnIndex="0" GridPane.rowIndex="2">
<!--
https://stackoverflow.com/questions/53394592/how-do-we-define-the-context-menu-in-fxml
-->
<contextMenu>
<ContextMenu fx:id="cmTF">
<items>
<MenuItem text="%day_label"/>
<MenuItem text="%month_label"/>
<MenuItem text="%year_label"/>
</items>
</ContextMenu>
</contextMenu>
</Label>
ResourceBundle bundle = ResourceBundle.getBundle("messages", new Locale("ru", "RU");
FXMLLoader loader = new FXMLLoader(getClass().getResource("/panel.fxml"), bundle);