Skip to content

Commit a058f7f

Browse files
Convertigo: add entry for pre-configuring symbols + new compose page link (#2645)
* add entry for pre-configuring symbols + new compose page * Update convertigo/content.md Co-authored-by: Tianon Gravi <admwiggin@gmail.com> * Update convertigo/content.md Co-authored-by: Tianon Gravi <admwiggin@gmail.com> --------- Co-authored-by: Tianon Gravi <admwiggin@gmail.com>
1 parent 2c6d47f commit a058f7f

1 file changed

Lines changed: 14 additions & 5 deletions

File tree

convertigo/content.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,15 @@ COPY myProject.car /usr/local/tomcat/webapps/convertigo/WEB-INF/default_user_wor
9696
COPY myDependency.car /usr/local/tomcat/webapps/convertigo/WEB-INF/default_user_workspace/projects/
9797
```
9898

99+
## Make image with pre-deployed configuration
100+
101+
You can add to your image a set of pre-configured symbols by copying the `global_symbols.properties`, you have to have this file next to your `Dockerfile`:
102+
103+
```console
104+
FROM %%IMAGE%%
105+
COPY global_symbols.properties /usr/local/tomcat/webapps/convertigo/WEB-INF/default_user_workspace/configuration/global_symbols.properties
106+
```
107+
99108
## Migrate from an earlier version of Convertigo Low Code Platform
100109

101110
- Stop the container to perform a backup. And just back the workspace directory. This will backup all the projects definitions and some project data.
@@ -275,13 +284,13 @@ The default `ENABLE_JDWP_DEBUG` value is **false** and can be defined this way:
275284
$ docker run -d –name C8O -e ENABLE_JDWP_DEBUG=true -p 28080:28080 %%IMAGE%%
276285
```
277286

278-
## Pre-configurated Docker Compose file
287+
## Pre configurated `docker compose` stack
279288

280-
You can use [this Docker Compose file](https://github.com/convertigo/docker/blob/master/compose/mbaas/docker-compose.yml) to run a complete Convertigo Low Code server with FullSync repository and MySQL analytics in a few command lines.
289+
You can use this [README](https://github.com/convertigo/docker/tree/compose) to run a complete Convertigo Low Code server.
281290

282291
```console
283-
$ mkdir c8oMBaaS
284-
$ cd c8oMBaaS
285-
$ wget https://raw.githubusercontent.com/convertigo/docker/master/compose/mbaas/docker-compose.yml
292+
$ mkdir convertigo
293+
$ cd convertigo
294+
$ curl -sL https://github.com/convertigo/docker/archive/refs/heads/compose.tar.gz | tar xvz --strip-components=1
286295
$ docker compose up -d
287296
```

0 commit comments

Comments
 (0)