You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into this issue when I had an API Server that I wanted to spin up with my App Server (and vice versa)
/app/pig.json
{
"include": {
"../api/pig.json": "api"
}
}
/api/pig.json
{
"include": {
"../app/pig.json": "app"
}
}
This will cause the error below
RangeError: Maximum call stack size exceeded
at fromJsonFile (/usr/local/lib/node_modules/docker-pig/lib/config.js:25:59)
at Object.module.exports.fromFile (/usr/local/lib/node_modules/docker-pig/lib/config.js:11:16)
at /usr/local/lib/node_modules/docker-pig/lib/config.js:49:38
at Function.forOwn (/usr/local/lib/node_modules/docker-pig/node_modules/lodash/dist/lodash.js:2106:15)
at resolveIncludes (/usr/local/lib/node_modules/docker-pig/lib/config.js:48:7)
at Object.module.exports.fromFile (/usr/local/lib/node_modules/docker-pig/lib/config.js:18:12)
at /usr/local/lib/node_modules/docker-pig/lib/config.js:49:38
The text was updated successfully, but these errors were encountered:
Btw, thanks for this. It's exactly what I needed! I may try to get involved in the project once I understand the context. I wouldn't mind making this change if you'd like.
Sorry, I'm not maintaining pig actively at the moment. You should try using docker-compose or similar tool instead. pig has last been tested with docker 1.4.0 (or was it 1.5.0).
I ran into this issue when I had an API Server that I wanted to spin up with my App Server (and vice versa)
/app/pig.json
/api/pig.json
This will cause the error below
The text was updated successfully, but these errors were encountered: