Skip to content

alien4cloud/docker-alien4cloud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-alien4cloud

Alien4Cloud docker image.

See https://alien4cloud.github.io for details on how ALIEN for Cloud (Application LIfecycle ENabler for cloud) can help you manage your application deployments.

Run this command to start Alien4Cloud :

docker run -d --name a4c -p 8088:8088 alien4cloud/alien4cloud

You can then access the UI at http://IPAddress:8088 and login as admin/admin.

Note: if you are using a HTTP proxy that needs to be known by Alien4Cloud, for example if you need to import archives in Alien4cloud from an external web site, you can define this proxy in Alien4Cloud using the environment variable JAVA_EXT_OPTIONS.

So the docker command to run would be :

docker run -d --name a4c \
           -p 8088:8088 \
           -e JAVA_EXT_OPTIONS="-Dhttp.proxyHost=10.1.2.3 -Dhttp.proxyPort=8080 -Dhttp.nonProxyHosts=\"127.0.0.1|10.11.12.13|10.20.*\"" \
           alien4cloud/alien4cloud