Merge branch 'master' of https://montana2000.ddns.net/gitea/nils/docker-compose
This commit is contained in:
@@ -17,8 +17,8 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- swag_conf_update:/config
|
- swag_conf_update:/config
|
||||||
ports:
|
ports:
|
||||||
- 443:443
|
- 444:443
|
||||||
- 80:80
|
- 81:80
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- nginx_network
|
- nginx_network
|
||||||
|
|||||||
@@ -7,19 +7,11 @@ services:
|
|||||||
fhem:
|
fhem:
|
||||||
image: fhem/fhem:latest
|
image: fhem/fhem:latest
|
||||||
container_name: fhem
|
container_name: fhem
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
ports:
|
|
||||||
- "8083:8083"
|
|
||||||
- "7072:7072"
|
|
||||||
- "8090:8090"
|
|
||||||
volumes:
|
volumes:
|
||||||
- fhem_opt:/opt/fhem/
|
- fhem_opt:/opt/fhem/
|
||||||
environment:
|
environment:
|
||||||
TELNETPORT: 7072
|
TELNETPORT: 7072
|
||||||
TZ: Europe/Berlin
|
TZ: Europe/Berlin
|
||||||
networks:
|
network_mode: host
|
||||||
- nginx_network
|
|
||||||
|
|
||||||
networks:
|
|
||||||
nginx_network:
|
|
||||||
driver: bridge
|
|
||||||
11
homeassistant/docker-compose.yaml
Normal file
11
homeassistant/docker-compose.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
homeassistant:
|
||||||
|
container_name: homeassistant
|
||||||
|
image: "ghcr.io/home-assistant/home-assistant:stable"
|
||||||
|
volumes:
|
||||||
|
- /PATH_TO_YOUR_CONFIG:/config
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
restart: unless-stopped
|
||||||
|
privileged: true
|
||||||
|
network_mode: host
|
||||||
@@ -10,7 +10,7 @@ services:
|
|||||||
- "1884:1884"
|
- "1884:1884"
|
||||||
- "9001:9001"
|
- "9001:9001"
|
||||||
volumes:
|
volumes:
|
||||||
- D:\dev\docker\docker-compose\mosquitto\mosquitto.conf:/mosquitto/config/mosquitto.conf
|
- ./mosquitto.conf:/mosquitto/config/mosquitto.conf
|
||||||
- mosquitto_data:/mosquitto/data
|
- mosquitto_data:/mosquitto/data
|
||||||
- mosquitto_log:/mosquitto/log
|
- mosquitto_log:/mosquitto/log
|
||||||
restart: always
|
restart: always
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ services:
|
|||||||
container_name: nextcloud
|
container_name: nextcloud
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- 8080:80
|
- 8082:80
|
||||||
links:
|
links:
|
||||||
- nextcloud_db
|
- nextcloud_db
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
20
node-red/docker-compose.yaml
Normal file
20
node-red/docker-compose.yaml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
################################################################################
|
||||||
|
# Node-RED Stack or Compose
|
||||||
|
################################################################################
|
||||||
|
# docker stack deploy node-red --compose-file docker-compose-node-red.yml
|
||||||
|
# docker-compose -f docker-compose-node-red.yml -p myNoderedProject up
|
||||||
|
################################################################################
|
||||||
|
version: "3.7"
|
||||||
|
|
||||||
|
services:
|
||||||
|
node-red:
|
||||||
|
image: nodered/node-red:latest
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Amsterdam
|
||||||
|
volumes:
|
||||||
|
- node-red-data:/data
|
||||||
|
restart: unless-stopped
|
||||||
|
network_mode: host
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
node-red-data:
|
||||||
40
octoprint/docker-compose.yaml
Normal file
40
octoprint/docker-compose.yaml
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
version: '2.4'
|
||||||
|
|
||||||
|
services:
|
||||||
|
octoprint:
|
||||||
|
image: octoprint/octoprint
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 8088:80
|
||||||
|
# devices:
|
||||||
|
# use `python -m serial.tools.miniterm` to see what the name is of the printer, this requires pyserial
|
||||||
|
# - /dev/ttyACM0:/dev/ttyACM0
|
||||||
|
# - /dev/video0:/dev/video0
|
||||||
|
volumes:
|
||||||
|
- octoprint:/octoprint
|
||||||
|
# uncomment the lines below to ensure camera streaming is enabled when
|
||||||
|
# you add a video device
|
||||||
|
#environment:
|
||||||
|
# - ENABLE_MJPG_STREAMER=true
|
||||||
|
|
||||||
|
####
|
||||||
|
# uncomment if you wish to edit the configuration files of octoprint
|
||||||
|
# refer to docs on configuration editing for more information
|
||||||
|
####
|
||||||
|
|
||||||
|
#config-editor:
|
||||||
|
# image: linuxserver/code-server
|
||||||
|
# ports:
|
||||||
|
# - 8443:8443
|
||||||
|
# depends_on:
|
||||||
|
# - octoprint
|
||||||
|
# restart: unless-stopped
|
||||||
|
# environment:
|
||||||
|
# - PUID=0
|
||||||
|
# - GUID=0
|
||||||
|
# - TZ=America/Chicago
|
||||||
|
# volumes:
|
||||||
|
# - octoprint:/octoprint
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
octoprint:
|
||||||
Reference in New Issue
Block a user