beaverhabits
This commit is contained in:
parent
0d91ac1e68
commit
2ddaea5954
2
.gitignore
vendored
2
.gitignore
vendored
@ -10,3 +10,5 @@ beszel_data/
|
||||
.nicegui/
|
||||
gaxinto@theodorio.com.json
|
||||
habits.db
|
||||
|
||||
certificates/
|
||||
29
beaverhabits/docker-compose.yml
Normal file
29
beaverhabits/docker-compose.yml
Normal file
@ -0,0 +1,29 @@
|
||||
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
|
||||
|
||||
networks:
|
||||
tunnel:
|
||||
external: true
|
||||
default:
|
||||
@ -68,3 +68,8 @@ hastebin.theocorp {
|
||||
tls internal
|
||||
reverse_proxy hastebin:7777
|
||||
}
|
||||
|
||||
habits.theocorp {
|
||||
tls internal
|
||||
reverse_proxy beaverhabits:8080
|
||||
}
|
||||
@ -30,6 +30,7 @@ services:
|
||||
- yams_default
|
||||
- beszel_default
|
||||
- dozzle_default
|
||||
- beaverhabits_default
|
||||
|
||||
volumes:
|
||||
caddy_data:
|
||||
@ -65,3 +66,5 @@ networks:
|
||||
external: true
|
||||
dozzle_default:
|
||||
external: true
|
||||
beaverhabits_default:
|
||||
external: true
|
||||
@ -7,9 +7,9 @@ services:
|
||||
ports:
|
||||
- 1015:8080
|
||||
labels:
|
||||
glance.name: Dozzer
|
||||
glance.name: Dozzle
|
||||
glance.icon: si:jellyfin
|
||||
glance.url: https://dozzer.theocorp
|
||||
glance.url: https://dozzle.theocorp
|
||||
glance.description: Container Logs
|
||||
glance.hide: false
|
||||
|
||||
Loading…
Reference in New Issue
Block a user