- Add development and production configuration templates - Include Docker build files for containerized deployment - Add Nginx configuration with SSL/TLS setup - Include environment configuration examples - Add SSL certificate setup and management - Configure application schemas and validation - Support for both local and production deployment scenarios Provides flexible deployment options from development to production with proper security, monitoring, and configuration management.
30 lines
607 B
Markdown
30 lines
607 B
Markdown
# Build Configuration
|
|
|
|
This directory contains build configurations for containerization.
|
|
|
|
## Docker
|
|
|
|
**Location**: `build/docker/`
|
|
|
|
### Dockerfiles
|
|
|
|
- **`simple.Dockerfile`** - Lightweight API server image
|
|
- **`api-server.Dockerfile`** - Full-featured API server
|
|
|
|
### Usage
|
|
|
|
```bash
|
|
# Build from project root
|
|
docker build -f build/docker/simple.Dockerfile -t fetchml:latest .
|
|
|
|
# Or use Makefile
|
|
make docker-build
|
|
```
|
|
|
|
## Podman
|
|
|
|
**Location**: `../podman/`
|
|
|
|
Podman configurations for running ML experiments with GPU support.
|
|
|
|
**Note**: Not for building - these are runtime configs for experiment execution.
|