Compare commits

...

1 Commits

Author SHA1 Message Date
Bryan Joshua Pedini 8e284c15b0 turned base into nodered deployment 2023-03-19 12:30:44 +01:00
4 changed files with 14 additions and 8 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2022 Bryan Joshua Pedini
Copyright (c) 2023 Bryan Joshua Pedini
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -1,2 +1 @@
# Base App Deployment
This is the base on which (almost) every deployment is sort-of-based on.
# Node-Red Deployment

View File

@ -1,6 +1,7 @@
---
services:
app:
nodered:
image: nodered/node-red:${NODERED_VERSION}
restart: unless-stopped
labels:
### Section Træfik
@ -29,6 +30,8 @@ services:
- diun.exclude_tags=${DIUN_EXCLUDE}
networks:
- traefik
volumes:
- ${NODERED_DATA}:/data
networks:
traefik:

View File

@ -1,10 +1,10 @@
# Træfik
TRAEFIK_ENABLED=true
TRAEFIK_NETWORK=traefik
TRAEFIK_ROUTER=app_example_com
TRAEFIK_SERVICE=app_example_com
TRAEFIK_SERVICE_PORT=80
TRAEFIK_MATCHRULE=Host(`app.example.com`)
TRAEFIK_ROUTER=nodered_example_com
TRAEFIK_SERVICE=nodered_example_com
TRAEFIK_SERVICE_PORT=1880
TRAEFIK_MATCHRULE=Host(`nodered.example.com`)
TRAEFIK_TLSENABLED=true
TRAEFIK_CERTRESOLVER=letsencrypt
TRAEFIK_HTTP_MIDDLEWARES=http-to-https
@ -16,3 +16,7 @@ DIUN_WATCHREPO=true
DIUN_SORTALGO=semver
DIUN_INCLUDE=
DIUN_EXCLUDE=
# Node-red
NODERED_VERSION=3.0.2-18-minimal
NODERED_DATA=./data/nodered