I have the Orca slicer and FreeCAD dockers in one compose file, but for some reason only orca slicer’s stream is viewable, freeCAD’s comes up black.
services:
orcaslicer:
image: lscr.io/linuxserver/orcaslicer:latest
container_name: orcaslicer
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /path/to/config:/config
ports:
- 3000:3000
- 3001:3001
restart: unless-stopped
freecad:
image: lscr.io/linuxserver/freecad:latest
container_name: freecad
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /path/to/config:/config
ports:
- 3002:3000
- 3003:3001
restart: unless-stopped
that’s my docker compose file if anyone needs it to debug my issue. I think another time I made a similar setup, only freeCAD’s stream would work.