An engagement based washing machine that spins you round and round!
1version: '3.8'
2
3services:
4 brooke-spin:
5 build:
6 context: .
7 dockerfile: Dockerfile
8 container_name: brooke-spin
9 restart: unless-stopped
10
11 # Mount configuration and data
12 volumes:
13 - ./config.yaml:/app/config.yaml:ro
14 - ./data:/data
15
16 # Environment variables (optional, overrides config.yaml)
17 environment:
18 - BLUESKY_APP_PASSWORD=${BLUESKY_APP_PASSWORD}
19
20 # Logging
21 logging:
22 driver: "json-file"
23 options:
24 max-size: "10m"
25 max-file: "3"
26
27 # Resource limits (adjust for your Raspberry Pi)
28 # Uncomment and customize if needed
29 # deploy:
30 # resources:
31 # limits:
32 # cpus: '0.5'
33 # memory: 128M
34 # reservations:
35 # cpus: '0.25'
36 # memory: 64M