mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
348 B
16 lines
348 B
3 years ago
|
version: "3.5"
|
||
|
|
||
|
services:
|
||
|
xc-cypress-test:
|
||
|
image: node:12.22.1-slim
|
||
|
ports:
|
||
|
- 8080:8080
|
||
|
volumes:
|
||
|
- ./packages/nocodb:/home/app
|
||
|
command:
|
||
|
- /bin/bash
|
||
|
- -c
|
||
|
- |
|
||
|
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
|
||
|
cd /home/app/ && npm i && npm run run
|