Browse Source

Run update.sh

Docker Library Bot 1 month ago
parent
commit
87882fe4a8
2 changed files with 17 additions and 8 deletions
  1. 3 3
      cassandra/README.md
  2. 14 5
      convertigo/README.md

+ 3 - 3
cassandra/README.md

@@ -24,11 +24,11 @@ WARNING:
 
 # Supported tags and respective `Dockerfile` links
 
--	[`5.0.6`, `5.0`, `5`, `latest`, `5.0.6-jammy`, `5.0-jammy`, `5-jammy`, `jammy`](https://github.com/docker-library/cassandra/blob/6d75217eb8c69b8d9dd94766b781d829a56fbd2d/5.0/Dockerfile)
+-	[`5.0.6`, `5.0`, `5`, `latest`, `5.0.6-bookworm`, `5.0-bookworm`, `5-bookworm`, `bookworm`](https://github.com/docker-library/cassandra/blob/7c5b1270f935620330a51c1658d2c0557432f4ac/5.0/Dockerfile)
 
--	[`4.1.10`, `4.1`, `4`, `4.1.10-jammy`, `4.1-jammy`, `4-jammy`](https://github.com/docker-library/cassandra/blob/793ea6b2a8097d629252fe77585775443b53e4c3/4.1/Dockerfile)
+-	[`4.1.10`, `4.1`, `4`, `4.1.10-bookworm`, `4.1-bookworm`, `4-bookworm`](https://github.com/docker-library/cassandra/blob/7c5b1270f935620330a51c1658d2c0557432f4ac/4.1/Dockerfile)
 
--	[`4.0.19`, `4.0`, `4.0.19-jammy`, `4.0-jammy`](https://github.com/docker-library/cassandra/blob/23531063a5aefaa47cbd5166c7d02ae75c44c262/4.0/Dockerfile)
+-	[`4.0.19`, `4.0`, `4.0.19-bookworm`, `4.0-bookworm`](https://github.com/docker-library/cassandra/blob/7c5b1270f935620330a51c1658d2c0557432f4ac/4.0/Dockerfile)
 
 # Quick reference (cont.)
 

+ 14 - 5
convertigo/README.md

@@ -143,6 +143,15 @@ COPY myProject.car /usr/local/tomcat/webapps/convertigo/WEB-INF/default_user_wor
 COPY myDependency.car /usr/local/tomcat/webapps/convertigo/WEB-INF/default_user_workspace/projects/
 ```
 
+## Make image with pre-deployed configuration
+
+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`:
+
+```console
+FROM convertigo
+COPY global_symbols.properties /usr/local/tomcat/webapps/convertigo/WEB-INF/default_user_workspace/configuration/global_symbols.properties
+```
+
 ## Migrate from an earlier version of Convertigo Low Code Platform
 
 -	Stop the container to perform a backup. And just back the workspace directory. This will backup all the projects definitions and some project data.
@@ -322,14 +331,14 @@ The default `ENABLE_JDWP_DEBUG` value is **false** and can be defined this way:
 $ docker run -d –name C8O -e ENABLE_JDWP_DEBUG=true -p 28080:28080 convertigo
 ```
 
-## Pre-configurated Docker Compose file
+## Pre configurated `docker compose` stack
 
-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.
+You can use this [README](https://github.com/convertigo/docker/tree/compose) to run a complete Convertigo Low Code server.
 
 ```console
-$ mkdir c8oMBaaS
-$ cd c8oMBaaS
-$ wget https://raw.githubusercontent.com/convertigo/docker/master/compose/mbaas/docker-compose.yml
+$ mkdir convertigo
+$ cd convertigo
+$ curl -sL https://github.com/convertigo/docker/archive/refs/heads/compose.tar.gz | tar xvz --strip-components=1
 $ docker compose up -d
 ```