first commit

This commit is contained in:
Mateusz Gruszczyński
2026-01-15 14:10:13 +01:00
commit af5fe5074c
8 changed files with 168 additions and 0 deletions

30
docker-compose.yml Normal file
View File

@@ -0,0 +1,30 @@
services:
qnetd:
container_name: proxmox-qdevice
build: .
ports:
- "22:22"
- "11922:11922"
- "5403:5403"
environment:
- VAR=example
volumes:
- /run/sshd
- <MY LOCAL STORAGE>:/etc/corosync
restart: unless-stopped
hostname: <MY FQDN>
networks:
vlan:
ipv4_address: <MY IP ADDRESS>
networks:
vlan:
driver: macvlan
driver_opts:
parent: <MY ETHERNET DEVICE>
ipam:
driver: default
config:
- subnet: "<MY SUBNET/MY RANGE"
ip_range: "<MY IP ADDRESS (same as above)>/32"
gateway: "<MY GATEWAY>"