fix(core): update

This commit is contained in:
2019-09-13 22:09:35 +02:00
parent 21e6fff3fb
commit 684185e951
2 changed files with 31 additions and 16 deletions

11
scripts/testauth.ts Normal file
View File

@ -0,0 +1,11 @@
import * as docker from '../ts';
import * as smartstring from '@pushrocks/smartstring';
const run = async () => {
const dockerHost = new docker.DockerHost();
await docker.DockerImage.createFromRegistry(dockerHost, {
imageUrl: 'registry.gitlab.com/servezone/private/cloudly:latest'
});
};
run();