added vpn server configuration

This commit is contained in:
2022-07-27 23:37:11 +02:00
parent a6892b1b9a
commit 274c9594ee
4 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
version: "3.9"
services:
rabbitmq:
image: "registry.willemserruys.com/rabbitmq:latest"
ports:
- 2883:1883
- 15672:15672
restart: unless-stopped
homeassistant:
image: "ghcr.io/home-assistant/home-assistant:stable"
ports:
- 8123:8123
volumes:
- /home/willem/homeassistant:/config
restart: unless-stopped
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: syncthing
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/London
volumes:
- /home/willem/syncthing:/data1
ports:
- 8384:8384
- 22000:22000/tcp
- 22000:22000/udp
- 21027:21027/udp
restart: unless-stopped