A cute, kawaii-styled homepage for a magical cookie store. 🌸
#
# Mmmmh Cookies
# https://gitlab.cylab.be/cylab/play/mmmmh-cookies
#
services:
web:
image: gitlab.cylab.be:8081/cylab/play/mmmmh-cookies
ports:
- '8000:80'
restart: always
environment:
# secret code will be revealed if user modifies cookie
# his browser
SECRET_CODE: 'i-love-cookies'
networks:
- cookies-network
networks:
cookies-network:
driver: bridge
docker compose up -d
Once running, the site will be available at http://localhost:8000.
The stack uses a simple Apache-based PHP 8.4 container.
mod_rewrite enabled.To run the project locally for development:
Clone the repository:
git clone https://gitlab.cylab.be/cylab/play/mmmmh-cookies.git
cd mmmmh-cookies
Run with Docker Compose:
docker compose up
Access the site: Open http://localhost:8000 in your browser.
The project uses a Kawaii aesthetic, characterized by:
public/: Contains the web root, including index.php, style.css, and favicon.svg.Dockerfile: Instructions to build the PHP/Apache container.docker-compose.yml: Orchestrates the local development environment.