Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 1.05 KB

File metadata and controls

63 lines (41 loc) · 1.05 KB

Lab 06-01 — Standalone

Module: 06 — Nextcloud file sync, calendar, and office suite
Duration: See lab manual
Test Script: ests/labs/test-lab-06-01.sh
Compose File: docker/docker-compose.standalone.yml

Objective

Run nextcloud in complete isolation. No external dependencies.

Prerequisites

  • Docker and Docker Compose installed
  • No other prerequisites

Steps

1. Prepare Environment

cd it-stack-nextcloud
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:80/health

4. Run Test Suite

bash tests/labs/test-lab-06-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.