Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions automation/README.Docker.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Running Automation in Docker

## Prerequisites

Before running the automation tests, ensure you have:

* Docker and Docker Compose installed
* Both `cloudberry-pxf` and `cloudberry` repositories cloned in the same parent directory (they will be mounted into the Docker container)

## Running Automation Tests

1. Navigate to the `cloudberry-pxf` directory:
```bash
cd cloudberry-pxf
```

2. Stop and remove any existing containers and volumes:
```bash
docker compose -f concourse/docker/pxf-cbdb-dev/ubuntu/docker-compose.yml down -v
```

3. Build the Docker images:
```bash
docker compose -f concourse/docker/pxf-cbdb-dev/ubuntu/docker-compose.yml build
```

4. Start the containers in detached mode:
```bash
docker compose -f concourse/docker/pxf-cbdb-dev/ubuntu/docker-compose.yml up -d
```

5. Run the entrypoint script to set up the environment:
```bash
docker exec pxf-cbdb-dev bash -lc \
"cd /home/gpadmin/workspace/cloudberry-pxf/concourse/docker/pxf-cbdb-dev/ubuntu && ./script/entrypoint.sh"
```

6. Execute the test suite:
```bash
docker exec pxf-cbdb-dev bash -lc \
"cd /home/gpadmin/workspace/cloudberry-pxf/concourse/docker/pxf-cbdb-dev/ubuntu && ./script/run_tests.sh"
```
You can run tests multiple times in one container.

## Troubleshooting
When something went wrong:

Jump into container: `docker compose ps` + `docker exec -it <id> bash`

Check logs:

* **PXF logs**: `/home/gpadmin/pxf-base/logs/`
* **Hadoop logs**: `/home/gpadmin/workspace/singlecluster/storage/logs/`
Loading