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 files
|
||||
!**/README.md
|
||||
!README.md
|
||||
!.gitignore
|
||||
!**/.env.example
|
||||
!**/Dockerfile
|
||||
|
@ -25,6 +25,5 @@
|
|||
# Homeassistant
|
||||
!**/homeassistant/config/configuration.yaml
|
||||
|
||||
|
||||
# Perplexica
|
||||
!**/config.toml
|
|
@ -34,7 +34,7 @@
|
|||
# Import service-specific Caddyfiles
|
||||
import /etc/caddy/services/*.caddy
|
||||
|
||||
mini1.docker.local {
|
||||
docker.local {
|
||||
reverse_proxy 192.168.178.230:55556
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# External
|
||||
|
||||
# Internal
|
||||
ddns.mini1.docker.local {
|
||||
ddns.docker.local {
|
||||
reverse_proxy 192.168.178.230:55555
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# External
|
||||
|
||||
# Internal
|
||||
dockge.mini1.docker.local {
|
||||
dockge.docker.local {
|
||||
reverse_proxy 192.168.178.230:5001
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
# External
|
||||
|
||||
# Internal
|
||||
doozle.mini1.docker.local {
|
||||
doozle.docker.local {
|
||||
reverse_proxy 192.168.178.230:60345
|
||||
}
|
|
@ -5,6 +5,10 @@ ha.mixel.cloud {
|
|||
|
||||
|
||||
# Internal
|
||||
ha.mini1.docker.local {
|
||||
ha.docker.local {
|
||||
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
|
||||
aisearch.mini1.docker.local {
|
||||
aisearch.docker.local {
|
||||
reverse_proxy 192.168.178.230:3000
|
||||
}
|
|
@ -4,6 +4,6 @@ planka.mixel.cloud {
|
|||
}
|
||||
|
||||
# Internal
|
||||
planka.mini1.docker.local {
|
||||
planka.docker.local {
|
||||
reverse_proxy 192.168.178.230:9631
|
||||
}
|
||||
|
|
|
@ -8,4 +8,18 @@ services:
|
|||
- /run/dbus:/run/dbus:ro
|
||||
restart: unless-stopped
|
||||
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
|
||||
http:
|
||||
base_url: https://ha.mixel.cloud
|
||||
use_x_forwarded_for: true
|
||||
trusted_proxies:
|
||||
- 192.168.178.0/24 # Local IP
|
||||
|
|
|
@ -13,8 +13,22 @@ services:
|
|||
volumes:
|
||||
- ../:/workspace
|
||||
- ./vscode-server/config:/config
|
||||
- db:/volumes
|
||||
ports:
|
||||
- 8443:8443
|
||||
restart: unless-stopped
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
- networks
|
||||
server:
|
||||
image: postgres:latest
|
||||
networks:
|
||||
- networks
|
||||
|
||||
volumes:
|
||||
db:
|
||||
|
||||
networks:
|
||||
networks:
|
||||
|
Loading…
Add table
Reference in a new issue