13 lines
311 B
YAML
13 lines
311 B
YAML
services:
|
|
lunch-notifier:
|
|
container_name: Lunch-Notifier
|
|
build: .
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
ports:
|
|
- "2323:2323"
|
|
volumes:
|
|
- ./data:/data
|
|
# Uncomment to share host timezone so RUN_TIME matches your local clock:
|
|
# - /etc/localtime:/etc/localtime:ro
|
|
|