14 lines
279 B
YAML
14 lines
279 B
YAML
services:
|
|
fixfin:
|
|
build: .
|
|
image: fixfin:local
|
|
container_name: fixfin
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3080:3000"
|
|
environment:
|
|
TZ: Europe/Berlin
|
|
DATA_FILE: /app/data/finance.json
|
|
volumes:
|
|
- /srv/docker/fixfin/data:/app/data
|