A helloworld example using the centos/apache container.
sudo atomic run projectatomic/helloapache
sudo atomicapp run projectatomic/helloapache
sudo atomic run projectatomic/helloapache --mode fetch --destination helloapache
cd helloapache
cp answers.conf.sample answers.conf # Modify then copy answers.conf.sample
sudo atomic run projectatomic/helloapache .
atomicapp fetch projectatomic/helloapache --destination helloapache
cd helloapache
cp answers.conf.sample answers.conf # Modify then copy answers.conf.sample
atomicapp run .
The default port is :80.
curl localhost
<html-foobar>
By default kubernetes will assign an available external IP.
kubectl describe pod helloapache
Name: helloapache
Namespace: default
Node: 127.0.0.1/127.0.0.1
Start Time: Wed, 30 Mar 2016 15:05:50 -0400
Labels: app=helloapache
Status: Running
IP: 172.17.0.5
curl 172.17.0.5
<html-output>