17 lines
444 B
JSON
17 lines
444 B
JSON
{
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"context": ".."
|
|
},
|
|
"containerEnv": {
|
|
"SERVICE_HOST_ROOT": "${localWorkspaceFolder}/tmp/data"
|
|
},
|
|
"initializeCommand": ["mkdir", "-p", "tmp/data"],
|
|
"mounts": [
|
|
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind",
|
|
"source=${localWorkspaceFolder}/tmp/data/,target=/var/lib/dokku/services/,type=bind"
|
|
],
|
|
"overrideCommand": false,
|
|
"runArgs": ["--init"]
|
|
}
|