Sfoglia il codice sorgente

fix: Fixes docker-compose up error and warning

тнomas 3 anni fa
parent
commit
7a197df57c
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. 4 1
      frontend/scripts/docker-buildfiles/docker-compose.yml

+ 4 - 1
frontend/scripts/docker-buildfiles/docker-compose.yml

@@ -5,8 +5,11 @@ services:
     build: .
     stdin_open: true 
     # tty: true
+    devices:
+      - "/dev/dri:/dev/dri"  # fixes MESA-LOADER error
     environment:
       - DISPLAY=${DISPLAY}
+      - NO_AT_BRIDGE=1  # fixes dbind-WARNING
     volumes:
       - $HOME/.Xauthority:/root/.Xauthority:rw
-    network_mode: host
+    network_mode: host