Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 1.02 KB

File metadata and controls

63 lines (41 loc) · 1.02 KB

Lab 04-01 — Standalone

Module: 04 — Redis cache and session store
Duration: See lab manual
Test Script: ests/labs/test-lab-04-01.sh
Compose File: docker/docker-compose.standalone.yml

Objective

Run redis in complete isolation. No external dependencies.

Prerequisites

  • Docker and Docker Compose installed
  • No other prerequisites

Steps

1. Prepare Environment

cd it-stack-redis
cp .env.example .env  # edit as needed

2. Start Services

make test-lab-01

Or manually:

docker compose -f docker/docker-compose.standalone.yml up -d

3. Verify

docker compose ps
curl -sf http://localhost:6379/health

4. Run Test Suite

bash tests/labs/test-lab-04-01.sh

Expected Results

All tests pass with FAIL: 0.

Cleanup

docker compose -f docker/docker-compose.standalone.yml down -v

Troubleshooting

See TROUBLESHOOTING.md for common issues.