unfied style
This commit is contained in:
+18
-3
@@ -110,7 +110,12 @@ services:
|
||||
- api
|
||||
env_file:
|
||||
- .env.docker.dev
|
||||
command: ["npm", "run", "dev", "--workspace", "@rentaldrivego/marketplace"]
|
||||
command:
|
||||
[
|
||||
"sh",
|
||||
"-c",
|
||||
"npm run build --workspace @rentaldrivego/types && cd /app/apps/marketplace && exec env PATH=/app/docker/scripts:$PATH /app/node_modules/.bin/next dev -H 0.0.0.0 -p 3000",
|
||||
]
|
||||
ports:
|
||||
- "3000:3000"
|
||||
volumes:
|
||||
@@ -127,7 +132,12 @@ services:
|
||||
- api
|
||||
env_file:
|
||||
- .env.docker.dev
|
||||
command: ["npm", "run", "dev", "--workspace", "@rentaldrivego/dashboard"]
|
||||
command:
|
||||
[
|
||||
"sh",
|
||||
"-c",
|
||||
"npm run build --workspace @rentaldrivego/types && cd /app/apps/dashboard && exec env PATH=/app/docker/scripts:$PATH /app/node_modules/.bin/next dev -H 0.0.0.0 -p 3001",
|
||||
]
|
||||
ports:
|
||||
- "3001:3001"
|
||||
volumes:
|
||||
@@ -144,7 +154,12 @@ services:
|
||||
- api
|
||||
env_file:
|
||||
- .env.docker.dev
|
||||
command: ["npm", "run", "dev", "--workspace", "@rentaldrivego/admin"]
|
||||
command:
|
||||
[
|
||||
"sh",
|
||||
"-c",
|
||||
"npm run build --workspace @rentaldrivego/types && cd /app/apps/admin && exec env PATH=/app/docker/scripts:$PATH /app/node_modules/.bin/next dev -H 0.0.0.0 -p 3002",
|
||||
]
|
||||
ports:
|
||||
- "3002:3002"
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user