Docker container exiting without logs

Howdy: welcome to PhotoStructure, @tyderian , and apologies that your first impression wasn’t smooth!

I’d make a couple changes:

  1. Like @avdp suggested, try replacing the bind mount paths to be absolute paths to existing directories. ${HOME} should work, but…

  2. change your environment section to look like

    environment:
      - "PS_LOG_LEVEL=debug"
      - "PS_LOG_STDOUT=1"
      - "PS_TAIL_LOGS=1"

PS_LOG_STDOUT=1 tees logs to both logfiles and the console. You’ll want to remove this later, as docker doesn’t take kindly to excessively chatty containers.

Please report back on how it goes!