Browse Source

Add missing start command to rc compose

Nicolas Meienberger 3 years ago
parent
commit
369e5ee94d
1 changed files with 2 additions and 0 deletions
  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