added organizr

This commit is contained in:
Dominik 2024-08-03 22:06:07 +02:00
parent 08aa066d91
commit 63e5316630
7 changed files with 461 additions and 19 deletions

1
.gitignore vendored
View File

@ -50,3 +50,4 @@ webtop/data/
immich/library/
immich/postgres/
esphome/config/
organizr/config/

View File

@ -7,7 +7,7 @@ Run first:
docker network create --driver bridge proxy
```
### For container using host networking:
#### For container using host networking:
The host networking driver only works on Linux hosts, but is availabe as a beta feature on Docker Desktop version 4.29 and later for Mac, Windows, and Linux. To enable this feature, navigate to the Features in development tab in Settings, and then select Enable host networking.
## Services
@ -60,6 +60,7 @@ The host networking driver only works on Linux hosts, but is availabe as a beta
| [nginx](https://hub.docker.com/_/nginx) | [82](http://localhost:82) |
| [Obsidian-LiveSync](https://github.com/vrtmrz/obsidian-livesync) | [5984](http://localhost:5984/_utils/) |
| [Olivetin](https://github.com/OliveTin/OliveTin) | [1337](http://localhost:1337) |
| [Organizr](https://docs.organizr.app/) | [8777](http://localhost:8777) |
| [PHPmyAdmin](https://hub.docker.com/_/phpmyadmin) | [8083](http://localhost:8083) |
| [PiHole](https://pi-hole.net/) | [9002](http://localhost:9002) |
| [Pinchflat](https://github.com/kieraneglin/pinchflat) | [8945](http://localhost:8945) |
@ -86,13 +87,6 @@ The host networking driver only works on Linux hosts, but is availabe as a beta
![homepage1](homepage1.jpg)
![homepage2](homepage2.jpg)
## ToDo
### Add to Homepage
- esphome
- organizr
## Tools
- [Composerize](https://www.composerize.com/)

File diff suppressed because one or more lines are too long

View File

@ -74,18 +74,14 @@
# token: token #md5(password + salt)
# salt: randomsalt
- Nextcloud:
icon: nextcloud.png
href: http://localhost:8080
description: self-hosted cloud storage and collaboration software that offers file access, talk, groupware and office integration
siteMonitor: http://nextcloud:80
- Organizr:
icon: organizr.png
href: http://localhost:8777
description: HTPC/Homelab Services Organizer
siteMonitor: http://organizr:80
server: my-docker
container: nextcloud
# widget:
# type: nextcloud
# url:
# username:
# password:
container: organizr
- Plex:
icon: plex.png
href: http://localhost:32400
@ -278,6 +274,19 @@
# url:
# username:
# password:
- Nextcloud:
icon: nextcloud.png
href: http://localhost:8080
description: self-hosted cloud storage and collaboration software that offers file access, talk, groupware and office integration
siteMonitor: http://nextcloud:80
server: my-docker
container: nextcloud
# widget:
# type: nextcloud
# url:
# username:
# password:
- OliveTin:
icon: olivetin.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 338 KiB

After

Width:  |  Height:  |  Size: 459 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 313 KiB

After

Width:  |  Height:  |  Size: 358 KiB

26
organizr/compose.yml Normal file
View File

@ -0,0 +1,26 @@
# https://docs.organizr.app/
# https://demo.organizr.app/#Organizr
#
name: organizr
services:
organizr:
container_name: organizr
hostname: organizr
image: organizr/organizr:latest
restart: unless-stopped
ports:
- 8777:80
volumes:
- ./config:/config
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Vienna
networks:
- proxy
networks:
proxy:
external: true