unicornpaint

A web-based painting app for raspberry PI and pimoroni Unicorn Hat HD
Log | Files | Refs | README

docker-compose.yml (303B)


      1 version: '3'
      2 services:
      3     unicornpaint:
      4         build: .
      5         image: mfashby/unicornpaint
      6         ports: 
      7             - "3001:3001"
      8         volumes:
      9             - "/home/pi/docker/unicornpaint/saves/:/go/saves/"
     10         devices:
     11             - "/dev/spidev0.0:/dev/spidev0.0"
     12         restart: always