-
Notifications
You must be signed in to change notification settings - Fork 3
Invadium UI is blank #25
Comments
Hi Adam, thanks for reporting this! :) Since I am travelling right now, it might take a few more days until I will have time to take a look at this one. |
Deploying with the default I suppose you are exposing Invadium on a different hostname and trying to access it there? Here is a
version: '3.8'
services:
invadium-backend:
container_name: invadium-backend
image: ghcr.io/dynatrace-oss/invadium-backend:latest
build: backend
env_file: ./backend/.env
environment:
- INVADIUM_CONFIG_PATH=/config
- INVADIUM_DOCKER_NETWORK=host
- INVADIUM_CORS_ORIGINS=["http://your-invadium-hostname:3000"]
ports:
- 3001:3001
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./exploits/config:/config
invadium-frontend:
container_name: invadium-frontend
image: ghcr.io/dynatrace-oss/invadium-frontend:latest
build: frontend
environment:
- NEXT_BACKEND_API_URL=http://your-invadium-hostname:3001
ports:
- 3000:3000 I understand that this isn't the most user-friendly way to deploy Invadium, partly because Invadium is best used within a Kubernetes cluster. I will look at possible ways to fix this or at least improve the docs. |
Actually a k8s cluster is better for me. Still struggling...
Output
docker images output
So |
Please ignore above, I have a working k8s in-browser demo here... https://killercoda.com/agardnerit/scenario/invadium |
So you managed to resolve the issue? Furthermore, I am curious about your use cases with Invadium, open to chat some day ;) |
To Reproduce
Env details
The text was updated successfully, but these errors were encountered: