refactor: use the gitlab registry image

This commit is contained in:
Michel Jonathan Schmitz
2019-06-04 11:55:36 +02:00
parent a478715d80
commit 67b31182e4
2 changed files with 2 additions and 3 deletions

View File

@@ -147,7 +147,7 @@ openstapps-core-tools pack
The UML Generator generates PlantUML from the project reflection of the source files. By default it will include externals, which will take considerably longer to execute, you can disable this behaviour via an option. It can help you to visually explore the data model or document a specific part.
You can either use the public PlantUML-server or start your own local instance. To build the image and run, restart or stop the container use the scripts provided in the `package.json`.
You can either use the public PlantUML-server or start your own local instance. To run, restart or stop the container use the scripts provided in the `package.json`.
### Generating from source-files

View File

@@ -33,8 +33,7 @@
"check-configuration": "openstapps-configuration",
"compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'",
"documentation": "typedoc --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src",
"plantuml-build": "docker build -t openstapps/plantuml-server .",
"plantuml-start": "docker run --name plantuml-server -d -p 8080:8080 openstapps/plantuml-server",
"plantuml-start": "docker run --name plantuml-server -d -p 8080:8080 registry.gitlab.com/openstapps/core-tools:latest",
"plantuml-restart": "docker restart plantuml-server",
"plantuml-stop": "docker stop plantuml-server",
"postversion": "npm run changelog",