Listens on http port 7114
and serves files from the Zilla container's /var/www
subdirectory.
- docker compose
To start
the Docker Compose stack defined in the compose.yaml file, use:
docker compose up -d
curl http://localhost:7114/index.html
output:
<html>
<head>
<title>Welcome to Zilla!</title>
</head>
<body>
<h1>Welcome to Zilla!</h1>
</body>
</html>
To remove any resources created by the Docker Compose stack, use:
docker compose down