🔨 [2.0.9.7] Use older chitu_crypt.py
[Marlin.git] / docker-compose.yml
bloba85e0f83150759d72285cca97975d71f41eaf7ef
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
15 volumes:
16   # This volume holds installed libraries for PlatformIO. If this is deleted you
17   # will have to download all the dependencies again, which can be a very slow
18   # process
19   platformio-cache: