mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 08:47:02 +00:00
added organizr
This commit is contained in:
parent
08aa066d91
commit
63e5316630
1
.gitignore
vendored
1
.gitignore
vendored
@ -50,3 +50,4 @@ webtop/data/
|
||||
immich/library/
|
||||
immich/postgres/
|
||||
esphome/config/
|
||||
organizr/config/
|
||||
|
10
README.md
10
README.md
@ -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
|
||||
@ -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
|
||||
|
BIN
homepage1.jpg
BIN
homepage1.jpg
Binary file not shown.
Before Width: | Height: | Size: 338 KiB After Width: | Height: | Size: 459 KiB |
BIN
homepage2.jpg
BIN
homepage2.jpg
Binary file not shown.
Before Width: | Height: | Size: 313 KiB After Width: | Height: | Size: 358 KiB |
26
organizr/compose.yml
Normal file
26
organizr/compose.yml
Normal 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
|
Loading…
x
Reference in New Issue
Block a user