This commit is contained in:
Nikita Bizyaev
2026-05-05 10:19:45 +03:00
commit 7a23a34bf0
5 changed files with 73 additions and 0 deletions

37
docker-compose.yml Normal file
View File

@@ -0,0 +1,37 @@
services:
netbird-server:
build:
context: .
dockerfile: Dockerfile.netbird-server
image: birdy/netbird-server:local
container_name: netbird-server
volumes:
- netbird_data:/var/lib/netbird
expose:
- "80"
- "3478/udp"
restart: unless-stopped
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