feat: initial release - MorkNetVizualiser v1.0
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
services:
|
||||
backend:
|
||||
build: ./backend
|
||||
restart: unless-stopped
|
||||
env_file: ./backend/.env
|
||||
volumes:
|
||||
- ./data:/data
|
||||
ports:
|
||||
- "2055:2055/udp" # NetFlow/IPFIX collector from UDR
|
||||
networks:
|
||||
- netmap
|
||||
|
||||
frontend:
|
||||
build:
|
||||
context: ./frontend
|
||||
args:
|
||||
# When nginx proxies /ws internally, the browser connects to the same host:port
|
||||
REACT_APP_WS_URL: "" # leave blank — nginx proxies /ws to backend
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "3500:80" # Access at http://<LXC-IP>:3500
|
||||
depends_on:
|
||||
- backend
|
||||
networks:
|
||||
- netmap
|
||||
|
||||
networks:
|
||||
netmap:
|
||||
driver: bridge
|
||||
Reference in New Issue
Block a user