Explorar el Código

Add missing start command to rc compose

Nicolas Meienberger hace 3 años
padre
commit
369e5ee94d
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      docker-compose.rc.yml

+ 2 - 0
docker-compose.rc.yml

@@ -17,6 +17,7 @@ services:
 
   api:
     image: meienberger/runtipi:rc-${TIPI_VERSION}
+    command: bash -c "cd /api && npm run start"
     container_name: api
     ports:
       - 3001:3001
@@ -35,6 +36,7 @@ services:
 
   dashboard:
     image: meienberger/runtipi:rc-${TIPI_VERSION}
+    command: bash -c "cd /dashboard && npm run dev"
     container_name: dashboard
     ports:
       - 3000:3000