Add full homelab inventory and remaining home services.
UniFi, Joplin, Glance, Uptime Kuma, Whoogle, Synology packages docs, Proxmox LXC inventory, Portainer stacks, and INVENTORY.md master list. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -1,8 +1,19 @@
|
||||
# portainer
|
||||
# Portainer
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
| **Poort** | 9000 |
|
||||
| **Start** | `docker compose up -d` |
|
||||
| **UI** | http://192.168.1.211:9000 |
|
||||
| **Data** | `/volume1/docker/portainer` |
|
||||
|
||||
Zie [apps/README.md](../README.md) en [RESTORE.md](../../RESTORE.md).
|
||||
```bash
|
||||
docker compose up -d
|
||||
```
|
||||
|
||||
## Portainer stacks (compose in Portainer beheerd)
|
||||
|
||||
| Stack | Bestand | Container |
|
||||
|-------|---------|-----------|
|
||||
| Excalidraw | [stacks/excalidraw.yml](stacks/excalidraw.yml) | Excalidraw :3765 |
|
||||
| Guacamole | [stacks/guacamole.yml](stacks/guacamole.yml) | Guacamole :8348 |
|
||||
|
||||
Zie ook [apps/excalidraw](../excalidraw/) en [apps/guacamole](../guacamole/).
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
version: "3.9"
|
||||
services:
|
||||
excalidraw:
|
||||
container_name: Excalidraw
|
||||
healthcheck:
|
||||
test: curl -f http://localhost:80/ || exit 1
|
||||
image: excalidraw/excalidraw:latest
|
||||
ports:
|
||||
- 3765:80
|
||||
restart: on-failure:5
|
||||
stdin_open: true
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
@@ -0,0 +1,20 @@
|
||||
services:
|
||||
guacamole:
|
||||
container_name: Guacamole
|
||||
image: jwetzell/guacamole
|
||||
|
||||
healthcheck:
|
||||
test: curl -f http://localhost:8080/ || exit 1
|
||||
mem_limit: 6g
|
||||
cpu_shares: 1024
|
||||
security_opt:
|
||||
- no-new-privileges:false
|
||||
restart: on-failure:5
|
||||
ports:
|
||||
- 8348:8080
|
||||
volumes:
|
||||
- /volume1/docker/guacamole:/config:rw
|
||||
environment:
|
||||
PUID: 1026
|
||||
PGID: 100
|
||||
TZ: Europe/Bucharest
|
||||
Reference in New Issue
Block a user