-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
I'm trying to figure out the best way to configure a docker container. Each cell will define in its documentation certain options that are available for configuration purposes. For example, the data-store example gives the 'beforeSave' hook. So, we have to be able to pass some kind of configuration to the container:
{
"beforeSave": {
"port": "8080",
"event": "transform"
}
}
I'm not even sure how that works in a docker container. Are they all considered to be on the localhost? So within data-store, can we just do this:
connect: function(event) { // event === config.beforeSave
http.connect('http://localhost:' + event.port + '/' + event.event);
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels