This directory contains Docker Compose configurations for running the Litter application locally. While suitable for development and testing, consider the Terraform-based Kubernetes deployment for staging and production environments.
Important
- Unix-based terminal (Linux, macOS, WSL, etc.)
- Docker and Docker Compose installed and running
- The JAR file has already been built via the Gradle wrapper and is located at
build/libs/litter.jar
(from the project root)
Copy the example environment file and adjust the values:
cd compose # navigate to the compose directory
cp example.env .env
vim .env # edit .env with your preferred text editor
Tip
You'll also need to edit the
docker-compose_build-image.yml
file to set the correct image name and tag (if using a forked repo).
You have two options for running the application:
Uses the local Dockerfile
to build the image:
docker compose -f docker-compose_build-image.yml up -d
Pulls the image from a container registry:
docker compose -f docker-compose_pull-image.yml up -d
Tip
Option A is good for local development when making rapid changes.
Option B is better for testing a specific version or when you don't need to modify the code.
You can include configuration for remote debugging (usually on port 5005). To connect your IDE:
- Create a Remote JVM Debug configuration
- Set the port to 5005
- Start debugging
Tip
docker-compose_build-image.yml
includes the JVM remote debugging options by default.docker-compose_pull-image.yml
does not have this included by default.
MongoDB data is persisted in a named volume (mongodb_data
).
To start fresh, remove the volume:
docker compose down -v
# all containers
docker compose logs -f
# specific container
docker compose logs -f litter-app
docker compose down
docker compose -f docker-compose_build-image.yml up -d --build
Warning
Remember that Compose is primarily for development. For production deployments, I'd recommend the Terraform configuration to deploy to Kubernetes.
If you encounter issues:
- Ensure all ports (8080, 27017, 5005) are available
- Check your
.env
file for correct values - Verify Docker has sufficient resources
- Use
docker compose logs
to investigate errors
Caution
Do not commit your .env
file to version control!
In production (e.g. using the Terraform setup), you'll use Azure Key Vault or similar for secrets.