Sign inSign up

oaeproject/oae-demo

By oaeproject

Updated about 5 years ago

Image
0

1.1K

oaeproject/oae-demo repository overview

How to get OAE running with docker

Run built image from dockerhub

docker run --rm -it -P --network host --name=oae oaeproject/oae-demo:latest

You'll still need to set up the dns entries, as follows:

# As root or with sudo
echo "127.0.0.1 admin.oae.com" > /etc/hosts
echo "127.0.0.1 guest.oae.com" > /etc/hosts

As soon as the container boot, you may go to admin.oae.com (admin interface) or guest.oae.com (test tenant).

Build and run locally

# Build the image
docker build --rm -t oae-demo:latest -f Dockerfile .
# Run the container (all servers)
docker run --rm -it -P --network host --name=oae oae-demo:latest

This is intended to work on linux alone.

Tag summary

Content type

Image

Digest

Size

1.9 GB

Last updated

about 5 years ago

docker pull oaeproject/oae-demo