Files
arbitrade/docker-compose.yml
T
zwitschi f3f369ad6b
CI / lint-test-build (push) Failing after 8m23s
Add initial project structure with Docker, CI, and FastAPI setup
- Create Dockerfile and docker-compose.yml for containerization
- Add CI configuration for linting and testing
- Implement FastAPI application with health check routes
- Set up database schema using DuckDB
- Include environment configuration and secrets management
- Add README with project objectives and key features
- Implement logging setup and configuration
- Create initial tests for health route
- Add HTML templates for web interface
2026-06-01 09:15:38 +02:00

14 lines
257 B
YAML

services:
arbitrade:
image: git.allucanget.biz/OWNER/arbitrade:latest
build:
context: .
dockerfile: Dockerfile
env_file:
- .env
ports:
- "8000:8000"
volumes:
- ./data:/app/data
restart: unless-stopped