Bare bones support of docker exec through the proxy

This commit is contained in:
Johannes Zellner
2018-08-17 15:30:23 +02:00
parent db385c6770
commit 4d4ce9b86e
2 changed files with 20 additions and 9 deletions

View File

@@ -98,7 +98,7 @@ describe('Cloudron', function () {
exec(`${DOCKER} exec ${containerId} ls`, function (error, stdout, stderr) {
expect(error).to.be(null);
expect(stderr).to.be.empty();
expect(stdout).to.be.empty();
expect(stdout).to.equal('bin\nboot\ndev\netc\nhome\nlib\nlib64\nmedia\nmnt\nopt\nproc\nroot\nrun\nsbin\nsrv\nsys\ntmp\nusr\nvar\n');
done();
});