This is the docker image for ADITO Mobile
You need an ADITO Server with enabled SOAP webservices
docker run -d -p 8080:8080 -p 8443:8443 --name aditomobile adito/aditomobile
All common environment variables with their default values are listed below
HTTPPORT=8080http port inside the container
HTTPSPORT=8443https port inside the container
APIURL=URL to API of ADITO Server based on this scheme: http://ADITO_SERVER_HOST:ADITO_SERVER_PORT/run-process?wsdl
for example: http://adito:7934/run-process?wsdl
You need to mount an pkc12-keystore with an alias tomcat to the container into "/usr/local/tomcat/conf/localhost-rsa.jks" (see docker-compose for reference)
Use the default password "changeit" for the key and keystore
services:
aditomobile:
environment:
APIURL: http://adito:7934/run-process?wsdl
HTTPPORT: '8082'
HTTPSPORT: '8441'
image: adito/aditomobile
ports:
- 8443:8443/tcp
- 8080:8080/tcp
restart: always
volumes:
- /volume/aditomobile/localhost-rsa.jks:/usr/local/tomcat/conf/localhost-rsa.jks:rw
version: '2.1'
Content type
Image
Digest
Size
97.1 MB
Last updated
about 7 years ago
docker pull adito/aditomobile