My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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: