docker-bits/lsio/budge/docker-compose.yaml

26 lines
688 B
YAML
Raw Normal View History

2022-02-14 00:35:35 +00:00
# [Budge](https://github.com/linuxserver/budge) is an open source 'budgeting
# with envelopes' personal finance app.
---
version: "2.1"
services:
budge:
image: ghcr.io/linuxserver/budge
container_name: budge
environment:
# for UserID
2022-04-02 00:45:58 +00:00
- PUID=${PUID:-1024}
# for GroupID
2022-02-14 00:35:35 +00:00
- PGID=${PGID:-100}
2023-02-12 01:01:09 +00:00
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
2022-02-14 00:35:35 +00:00
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Persistent config files
- ${BASEDIR:-/volume1/docker}/budge/config:/config
ports:
# http gui
- 80:80
# https gui
- 443:443
restart: unless-stopped