From: SCHLEMMER N. <Nor...@pd...> - 2023-10-17 12:52:22
|
Hi John Sorry, please delete my email from "Dienstag, 17. Oktober 2023 09:49" The image "roundup-development:multi" is up-and-running under Raspberry OS 64 bit Will do some tests and with mariadb too... Br Norbert docker run --rm -p 8918:8080 --name roundup-multi -v $PWD:/usr/src/app/tracker rounduptracker/roundup-development:multi demo If docker reports a bind error, you can set the Docker environment variable PORT_8080 to fix it. Add -e PORT_8080=port_number to the docker run command. The port_number must match the first value to -p which must be an unused port on your server. Restarting existing tracker. Demo Tracker Home: tracker/demo Server running - connect to: http://localhost:8917/demo/ 1. Log in as "demo"/"demo" or "admin"/"admin". 2. Hit Control-C to stop the server. 3. Re-start the server by running "/usr/local/bin/roundup-demo" again. 4. Reset the tracker by running "/usr/local/bin/roundup-demo nuke". By default the demo tracker is set up to be accessed from "localhost". If you want to run it on a server, edit "/usr/src/app/demo/config.ini" and set the "web" option in section "[tracker]" to your host name, then restart demo. If you want to change backend types, you must use "nuke". 127.0.0.1 - - [17/Oct/2023 12:47:47] "GET /demo/ HTTP/1.1" 200 - 192.168.10.6 - - [17/Oct/2023 12:47:53] "GET /demo/ HTTP/1.1" 200 - 192.168.10.6 - - [17/Oct/2023 12:47:54] "GET /demo/@@file/style.css HTTP/1.1" 200 - 192.168.10.6 - - [17/Oct/2023 12:47:54] "GET /favicon.ico HTTP/1.1" 200 - 127.0.0.1 - - [17/Oct/2023 12:48:17] "GET /demo/ HTTP/1.1" 200 - 127.0.0.1 - - [17/Oct/2023 12:48:47] "GET /demo/ HTTP/1.1" 200 - 192.168.10.6 - - [17/Oct/2023 12:48:54] Request timed out: TimeoutError('timed out') 127.0.0.1 - - [17/Oct/2023 12:49:18] "GET /demo/ HTTP/1.1" 200 - 127.0.0.1 - - [17/Oct/2023 12:49:48] "GET /demo/ HTTP/1.1" 200 - |