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