update Docker configurations to use pre-built images and add development compose file

This commit is contained in:
Eduardo Silva
2026-01-01 10:23:53 -03:00
parent 00c46b94de
commit b7065177a7
3 changed files with 49 additions and 9 deletions

38
cluster_node-dev.yml Normal file
View File

@@ -0,0 +1,38 @@
version: '3'
services:
cluster-node:
container_name: cluster-node
restart: unless-stopped
build:
context: containers/cluster_node
dockerfile: Dockerfile-cluster_node
environment:
- MASTER_SERVER_ADDRESS=${MASTER_SERVER_ADDRESS}
- DEBUG_MODE=${DEBUG_MODE}
- COMPOSE_VERSION=03r
- TZ=${TIMEZONE}
- TOKEN=${TOKEN}
volumes:
- cluster_node_wireguard:/etc/wireguard
- cluster_node_dnsmasq_conf:/etc/dnsmasq/
#ports:
# Ports for WireGuard instances.
#- "51820-51839:51820-51839/udp"
cap_add:
- NET_ADMIN
- SYS_MODULE
sysctls:
- net.ipv4.conf.all.src_valid_mark=1
- net.ipv4.ip_forward=1
cluster-node-dns:
container_name: cluster-node-dns
restart: unless-stopped
image: eduardosilva/wireguard_webadmin_dns:latest
environment:
- TZ=${TIMEZONE}
volumes:
- cluster_node_dnsmasq_conf:/etc/dnsmasq/
volumes:
cluster_node_wireguard:
cluster_node_dnsmasq_conf: