31 lines
986 B
YAML
31 lines
986 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:
|
|
- tunnel
|
|
- default
|
|
|
|
networks:
|
|
tunnel:
|
|
external: true
|
|
default:
|