My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

docker-compose.yml 522B

12345678910111213141516171819
  1. version: "3.8"
  2. services:
  3. # The main image: this doesn't run any particular command, but is mainly used
  4. # for running tests locally
  5. marlin:
  6. image: marlin-dev
  7. build:
  8. dockerfile: Dockerfile
  9. context: docker
  10. working_dir: /code
  11. volumes:
  12. - .:/code
  13. - platformio-cache:/root/.platformio
  14. volumes:
  15. # This volume holds installed libraries for PlatformIO. If this is deleted you
  16. # will have to download all the dependencies again, which can be a very slow
  17. # process
  18. platformio-cache: