Skip to main content

autodock hipache plugin

Project description

Image Layers

Hipache Plugin for autodock.

autodock-hipache is MIT licensed.

Basic Usage

Start the daemon:

$ docker run -d --name autodock prologic/autodock

Link and start the autodock Hipache Plugin:

$ docker run -d --link autodock prologic/autodock-hipache

Now whenever you start a new container autodock will listen for Docker events and discover containers that have been started. The autodock-hipache plugin will specifically listen for starting containers that have a VIRTUALHOST environment variable and reconfigure the running hipache container.

An optional ALIAS environment value can be given as an extra virtualhost typically used for a www. alias to a domain.

Start a “Hello World” Web Application:

$ docker run -d -e VIRTUALHOST=hello.local prologic/hello
curl -q -o - -H 'Host: hello.local' http://localhost/
Hello World!

docker-compose.yml:

autodock:
    image: prologic/autodock
    volumes:
        - /var/run/docker.sock:/var/run/docker.sock

autodockhipache:
    image: prologic/autodock-hipache
    links:
        - autodock
        - hipache:redis

sslcerts:
    image: prologic/mksslcrt
    command: "*.mydomain.com"

hipache:
    image: prologic/hipache
    ports:
        - "80:80"
        - "443:443"
    volumes_from:
        - sslcerts

hello:
    image: prologic/hello
    environment:
        - VIRTUALHOST=hello.mydomain.com
        - ALIAS=hello.local

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autodock-hipache-0.0.2.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

autodock_hipache-0.0.2-cp27-none-macosx_10_10_x86_64.whl (6.1 kB view hashes)

Uploaded CPython 2.7 macOS 10.10+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page