Dockerfile links7.4.5, 7.4, latest (7.4/7.4.5/Dockerfile)web-connector-7.4.5, web-connector-7.4, web-connector (7.4/7.4.5/web-connector/Dockerfile)For detailed information about the published artifacts of each of the above supported tags (image metadata, transfer size, etc), please see the repos/convertigo directory in the docker-library/repo-info GitHub repo.
For more information about this image and its history, please see the relevant manifest file (library/convertigo). This image is updated via pull requests to the docker-library/official-images GitHub repo.
Convertigo Community edition is an open source MBaaS (Mobile Back end as a Service) combined with a MADP (Mobile application development platform). The platform is used to build complex Cross-platform Enterprise Mobile apps in a few days. Convertigo platform is composed of several components:
Convertigo Community edition brought to you by Convertigo SA (Paris & San Francisco). The platform is currently used by more than 100K developers worldwide, building enterprise class mobile apps.
$ docker run --name C8O -d -p 28080:28080 convertigo
This will start a container running the minimum Convertigo MBaaS server. Convertigo MBaaS uses images' /workspace directory to store configuration file and deployed projects as an Docker volume.
You can access the Server admin console on http://[dockerhost]:28080/convertigo and login using the default credentials: admin / admin
Convertigo MBaaS FullSync module uses Apache CouchDB 1.6.1 as NoSQL repository. You can use the couchdb docker image and link to it convertigo this way
Launch CouchDB container and name it 'fullsync'
docker run -d --name fullsync couchdb:1.6.1
Then launch Convertigo and link it to the running 'fullsync' container. Convertigo MBaaS sever will automatically use it as its fullsync repository.
docker run -d --name C8O-MBAAS --link fullsync:couchdb -p 28080:28080 convertigo
MySQL is the recommended database for holding Convertigo MBaaS server analytics. You can use this command to run convertigo and link it to a running MySQL container. Change [mysql-container] to the container name, and [username for the c8oAnalytics db], [password for specified db user] with the values for your MySQL configuration.
docker run -d --name C8O-MBAAS --link [mysql-container]:mysql -p 28080:28080 \
-e JAVA_OPTS="-Dconvertigo.engine.billing.enabled=true \
-Dconvertigo.engine.billing.persistence.jdbc.username=[username for the c8oAnalytics db] \
-Dconvertigo.engine.billing.persistence.jdbc.password=[password for specified db user] \
-Dconvertigo.engine.billing.persistence.jdbc.url=jdbc:mysql://mysql:3306/c8oAnalytics" \
convertigo
Projects are deployed in the Convertigo workspace, a simple file system directory. You can map the docker container /workspace to your physical system by using :
docker run --name C8O-MBAAS -v $(pwd):/workspace -d -p 28080:28080 convertigo
You can share the same workspace by all Convertigo containers. This this case, when you deploy a project on a Convertigo container, it will be seen by others. This is the best way to build multi-instance load balanced Convertigo server farms.
The default administration account of a Convertigo serveur is admin / admin and the testplatform is anonymous.
These accounts can be configured through the administration console and saved in the workspace.
CONVERTIGO_ADMIN_USER and CONVERTIGO_ADMIN_PASSWORD variablesYou can change the default administration account :
docker run -d --name C8O-MBAAS -e CONVERTIGO_ADMIN_USER=administrator -e CONVERTIGO_ADMIN_PASSWORD=s3cret -p 28080:28080 convertigo
CONVERTIGO_TESTPLATFORM_USER and CONVERTIGO_TESTPLATFORM_PASSWORD variablesYou can lock the testplatform by setting the account :
docker run -d --name C8O-MBAAS -e CONVERTIGO_TESTPLATFORM_USER=tp_user -e CONVERTIGO_TESTPLATFORM_PASSWORD=s3cret -p 28080:28080 convertigo
JAVA_OPTS Environment variableConvertigo is based on a Java process with some defaults JVM options. You can override our defaults JVM options with you own.
Add any Java JVM options such as -Xmx or -D[something]
docker run -d --name C8O-MBAAS -e JAVA_OPTS="-Xmx4096 -DjvmRoute=server1" -p 28080:28080 convertigo
You can use this stack to run a complete Convertigo MBaaS server with FullSync repository and MySQL analytics in a few command lines.
mkdir c8oMBaaS
cd c8oMBaaS
wget https://raw.githubusercontent.com/convertigo/docker/master/compose/mbaas/docker-compose.yml
docker-compose up -d
Convertigo Community Edition MBaaS image is licenced under AGPL 3.0
This image is officially supported on Docker version 17.04.0-ce.
Support for older versions (down to 1.6) is provided on a best-effort basis.
Please see the Docker installation documentation for details on how to upgrade your Docker daemon.
If you have any problems with or questions about this image, please contact us through a GitHub issue. If the issue is related to a CVE, please check for a cve-tracker issue on the official-images repository first.
You can also reach many of the official image maintainers via the #docker-library IRC channel on Freenode.
You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.
Before you start to code, we recommend discussing your plans through a GitHub issue, especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.
Documentation for this image is stored in the convertigo/ directory of the docker-library/docs GitHub repo. Be sure to familiarize yourself with the repository's README.md file before attempting a pull request.