Setup Remote debugging with IntelliJ

You should be able to directly enable (without editing of the ignition.conf file) debug mode by using the -d flag of runtime arguments of the container. You’ll also want to probably publish port 8000, e.g.

docker run -p 9088:8088 -p 8000:8000 \
  -v your-vol-name:/usr/local/bin/ignition/data \
  inductiveautomation/ignition:8.1.15 \
  -d

Note: you can replace the backslashes \ with backticks ` for multi-line separators if you’re on Powershell on Windows.