| 1234567891011121314151617 |
- services:
- flask-app:
- tty: true
- build: . # Uncomment this if you need to build
- image: ghcr.io/tuanchris/dune-weaver:main # Use latest production image
- restart: always
- ports:
- - "8080:8080" # Map port 8080 of the container to 8080 of the host
- volumes:
- - ./patterns:/app/patterns # Map host folder to container folder
- - ./playlists.json:/app/playlists.json
- devices:
- - "/dev/ttyACM0:/dev/ttyACM0"
- privileged: true
- environment:
- - FLASK_ENV=development # Set environment variables for Flask
- container_name: flask-theta-rho-app
|