- Docker
- Docker Compose
-
Clone the repository:
git clone <repository-url> cd lab-final-project
-
Build and run with Docker Compose:
docker compose up -d --build
-
Open your browser:
http://localhost:8080
-
Copy the example environment file:
cp .env.example .env
-
Edit the
.envfile:nano .env
-
Update your name:
USER_NAME=Your Name Here
-
Rebuild and restart:
docker compose up -d --build
You can also set the name without creating a .env file:
USER_NAME="Jane Doe" docker compose up -d --buildOr modify docker-compose.yml directly:
environment:
- USER_NAME=Jane Doe