update to various components
This commit is contained in:
parent
2ff7948f55
commit
b93b2eaf67
11 changed files with 43 additions and 11 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -2,10 +2,10 @@
|
||||||
*
|
*
|
||||||
|
|
||||||
# But not these directories; this allows us to look inside them
|
# But not these directories; this allows us to look inside them
|
||||||
!*/
|
# !*/
|
||||||
|
|
||||||
# But not these files
|
# But not these files
|
||||||
!**/README.md
|
!README.md
|
||||||
!.gitignore
|
!.gitignore
|
||||||
!**/.env.example
|
!**/.env.example
|
||||||
!**/Dockerfile
|
!**/Dockerfile
|
||||||
|
@ -25,6 +25,5 @@
|
||||||
# Homeassistant
|
# Homeassistant
|
||||||
!**/homeassistant/config/configuration.yaml
|
!**/homeassistant/config/configuration.yaml
|
||||||
|
|
||||||
|
|
||||||
# Perplexica
|
# Perplexica
|
||||||
!**/config.toml
|
!**/config.toml
|
|
@ -34,7 +34,7 @@
|
||||||
# Import service-specific Caddyfiles
|
# Import service-specific Caddyfiles
|
||||||
import /etc/caddy/services/*.caddy
|
import /etc/caddy/services/*.caddy
|
||||||
|
|
||||||
mini1.docker.local {
|
docker.local {
|
||||||
reverse_proxy 192.168.178.230:55556
|
reverse_proxy 192.168.178.230:55556
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# External
|
# External
|
||||||
|
|
||||||
# Internal
|
# Internal
|
||||||
ddns.mini1.docker.local {
|
ddns.docker.local {
|
||||||
reverse_proxy 192.168.178.230:55555
|
reverse_proxy 192.168.178.230:55555
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
# External
|
# External
|
||||||
|
|
||||||
# Internal
|
# Internal
|
||||||
dockge.mini1.docker.local {
|
dockge.docker.local {
|
||||||
reverse_proxy 192.168.178.230:5001
|
reverse_proxy 192.168.178.230:5001
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
# External
|
# External
|
||||||
|
|
||||||
# Internal
|
# Internal
|
||||||
doozle.mini1.docker.local {
|
doozle.docker.local {
|
||||||
reverse_proxy 192.168.178.230:60345
|
reverse_proxy 192.168.178.230:60345
|
||||||
}
|
}
|
|
@ -5,6 +5,10 @@ ha.mixel.cloud {
|
||||||
|
|
||||||
|
|
||||||
# Internal
|
# Internal
|
||||||
ha.mini1.docker.local {
|
ha.docker.local {
|
||||||
reverse_proxy 192.168.178.230:8123
|
reverse_proxy 192.168.178.230:8123
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nodered.docker.local {
|
||||||
|
reverse_proxy 192.168.178.230:1880
|
||||||
|
}
|
|
@ -4,6 +4,6 @@ aisearch.mixel.cloud {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Internal
|
# Internal
|
||||||
aisearch.mini1.docker.local {
|
aisearch.docker.local {
|
||||||
reverse_proxy 192.168.178.230:3000
|
reverse_proxy 192.168.178.230:3000
|
||||||
}
|
}
|
|
@ -4,6 +4,6 @@ planka.mixel.cloud {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Internal
|
# Internal
|
||||||
planka.mini1.docker.local {
|
planka.docker.local {
|
||||||
reverse_proxy 192.168.178.230:9631
|
reverse_proxy 192.168.178.230:9631
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,3 +9,17 @@ services:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
privileged: true
|
privileged: true
|
||||||
network_mode: host
|
network_mode: host
|
||||||
|
nodered:
|
||||||
|
container_name: nodered
|
||||||
|
image: nodered/node-red
|
||||||
|
ports:
|
||||||
|
- 1880:1880
|
||||||
|
volumes:
|
||||||
|
- ./nodered:/data
|
||||||
|
depends_on:
|
||||||
|
- homeassistant
|
||||||
|
#- mosquitto
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
user: node-red
|
||||||
|
restart: unless-stopped
|
|
@ -13,6 +13,7 @@ scene: !include scenes.yaml
|
||||||
|
|
||||||
# Reverse proxy configuration
|
# Reverse proxy configuration
|
||||||
http:
|
http:
|
||||||
|
base_url: https://ha.mixel.cloud
|
||||||
use_x_forwarded_for: true
|
use_x_forwarded_for: true
|
||||||
trusted_proxies:
|
trusted_proxies:
|
||||||
- 192.168.178.0/24 # Local IP
|
- 192.168.178.0/24 # Local IP
|
||||||
|
|
|
@ -13,8 +13,22 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- ../:/workspace
|
- ../:/workspace
|
||||||
- ./vscode-server/config:/config
|
- ./vscode-server/config:/config
|
||||||
|
- db:/volumes
|
||||||
ports:
|
ports:
|
||||||
- 8443:8443
|
- 8443:8443
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
|
networks:
|
||||||
|
- networks
|
||||||
|
server:
|
||||||
|
image: postgres:latest
|
||||||
|
networks:
|
||||||
|
- networks
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
db:
|
||||||
|
|
||||||
|
networks:
|
||||||
|
networks:
|
||||||
|
|
Loading…
Add table
Reference in a new issue