theocorp_docker_compose/beaverhabits/docker-compose.yml
geezo fcdd8ec832
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m22s
stuff
2025-05-09 20:15:07 -04:00

28 lines
942 B
YAML

services:
beaverhabits:
container_name: beaverhabits
user: 1000:1000 # User permissions of your docker or default user.
environment:
# See the note below to find all the environment variables
- HABITS_STORAGE=USER_DISK # DATABASE stores in a single SQLite database named habits.db. USER_DISK option saves in a local json file.
# Skip authentication
- TRUSTED_LOCAL_EMAIL=gaxinto@theodorio.com
- ENABLE_IOS_STANDALONE=true
volumes:
- /home/geezo/docker_containers/beaverhabits:/app/.user/ # Change directory to match your docker file scheme.
ports:
- 1020:8080
restart: unless-stopped
image: daya0576/beaverhabits:latest
labels:
glance.name: BeaverHabits
glance.icon: si:checkmarx
glance.url: "https://habits.theocorp"
glance.description: Habit Tacker
glance.hide: false
networks:
- default
networks:
default: