Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 554 Bytes

readme.md

File metadata and controls

25 lines (17 loc) · 554 Bytes

falcon-virtual-docker-example

An example demonstrating falcon virtual in docker.

This container starts two falcon servers, managed by falcon virtual.

Running

To build the container:

docker build . -t falcon-virtual-test

To run the container:

docker run --rm \
    -p 443:443 \
    -h hello.localhost \
    -h beer.localhost \
    --name test falcon-virtual-test

Once running, both https://localhost.beer and https://localhost.hello should be accesible via curl or web browser. You may need to use -k when using curl.