diff options
author | Martin Ashby <martin@ashbysoft.com> | 2018-05-17 19:35:13 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2018-05-17 19:35:13 +0000 |
commit | 3aaf918e40ad68c97e542bc596f630b58991ff66 (patch) | |
tree | 393800edd9a00f95ff2704820005dcce2006ffeb | |
parent | e4e70b93d0756a7201c8a9f3f32721b225ae059b (diff) | |
download | unicornpaint-3aaf918e40ad68c97e542bc596f630b58991ff66.tar.gz unicornpaint-3aaf918e40ad68c97e542bc596f630b58991ff66.tar.bz2 unicornpaint-3aaf918e40ad68c97e542bc596f630b58991ff66.tar.xz unicornpaint-3aaf918e40ad68c97e542bc596f630b58991ff66.zip |
Added docker-compose. Explictly use latest python
-rw-r--r-- | docker-compose.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..1730cc4 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,10 @@ +version: '3' +services: + unicornpaint: + build: . + image: mfashby/unicornpaint + ports: + - "3001:3001" + volumes: + - "/dev/spidev0.0:/dev/spidev0.0" + - "/home/pi/unicornpaint/saves/:/saves/" |