mirror of
https://github.com/rangermix/TwitchDropsMiner.git
synced 2026-05-26 15:13:32 +00:00
- add date to console log - add timezone to logger - use python-alpine to make image size less than 1/10
16 lines
389 B
YAML
16 lines
389 B
YAML
services:
|
|
twitch-drops-miner:
|
|
build: .
|
|
container_name: twitch-drops-miner
|
|
image: twitch-drops-miner:latest
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
# Mount data directory for persistent storage
|
|
- ./data:/app/data
|
|
- ./logs:/app/logs
|
|
environment:
|
|
# Set timezone (optional, defaults to UTC)
|
|
- TZ=Australia/Sydney
|
|
restart: unless-stopped
|