the one server

This commit is contained in:
Nikita Bizyaev
2026-05-05 11:13:21 +03:00
parent a382952cf5
commit dd3d10fe27
4 changed files with 4 additions and 31 deletions

View File

@@ -1,6 +0,0 @@
FROM netbirdio/dashboard:latest
ENV NETBIRD_MGMT_API_ENDPOINT=https://birdy.greact.online
ENV NETBIRD_MGMT_GRPC_API_ENDPOINT=https://birdy.greact.online
ENV USE_AUTH0=false
ENV NETBIRD_AUTH_OIDC_CONFIGURATION_ENDPOINT=

View File

@@ -1,3 +1,3 @@
FROM netbirdio/netbird-server:latest
FROM netbirdio/netbird:latest
COPY config.yaml /etc/netbird/config.yaml

View File

@@ -1,6 +0,0 @@
NETBIRD_MGMT_API_ENDPOINT=https://birdy.greact.online
NETBIRD_MGMT_GRPC_API_ENDPOINT=https://birdy.greact.online
USE_AUTH0=false # ВАЖНО: отключает Auth0
# Эти переменные можно оставить пустыми (внешний IdP не используется):
NETBIRD_AUTH_OIDC_CONFIGURATION_ENDPOINT=

View File

@@ -1,10 +1,10 @@
services:
netbird-server:
birdy:
build:
context: .
dockerfile: Dockerfile.netbird-server
image: birdy/netbird-server:local
container_name: netbird-server
image: birdy/netbird:local
container_name: birdy-server
volumes:
- netbird_data:/var/lib/netbird
expose:
@@ -14,24 +14,9 @@ services:
networks:
- proxy
dashboard:
build:
context: .
dockerfile: Dockerfile.dashboard
image: birdy/netbird-dashboard:local
container_name: netbird-dashboard
expose:
- "80"
depends_on:
- netbird-server
restart: unless-stopped
networks:
- proxy
volumes:
netbird_data:
networks:
proxy:
external: true