diff --git a/content/index.html b/content/index.html new file mode 100644 index 0000000000000000000000000000000000000000..cadafc690f035680811701806522d7238df142e8 --- /dev/null +++ b/content/index.html @@ -0,0 +1,2 @@ +foo bar +fizz buzz diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000000000000000000000000000000000000..11f82bda7d6ceae06eba40fb9eff5ea25b5487be --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,22 @@ +version: '2' + +services: + + static: + build: . + environment: + VIRTUAL_HOST: '' + VIRTUAL_PORT: '80' + volumes: + - ./content/:/var/www + - ./lighttpd.conf:/etc/lighttpd/lighttpd.conf + expose: + - 80 + networks: + - front-tier + +networks: + + front-tier: + external: + name: nginx_default diff --git a/example-content/index.html b/example-content/index.html deleted file mode 100644 index 58091239a07bb7fbabf5c73d0c8855491b005aa3..0000000000000000000000000000000000000000 --- a/example-content/index.html +++ /dev/null @@ -1 +0,0 @@ -This is your content.