mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2026-08-01 06:36:12 +00:00
added organizr
This commit is contained in:
@@ -50,3 +50,4 @@ webtop/data/
|
||||
immich/library/
|
||||
immich/postgres/
|
||||
esphome/config/
|
||||
organizr/config/
|
||||
|
||||
@@ -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
|
||||

|
||||

|
||||
|
||||
## ToDo
|
||||
|
||||
### Add to Homepage
|
||||
|
||||
- esphome
|
||||
- organizr
|
||||
|
||||
## Tools
|
||||
|
||||
- [Composerize](https://www.composerize.com/)
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -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
|
||||
@@ -279,6 +275,19 @@
|
||||
# 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
|
||||
href: http://localhost:1337
|
||||
|
||||
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 |
@@ -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
|
||||
Reference in New Issue
Block a user