Files
songparser/docker-compose.yaml
phoenix b110066a61
All checks were successful
Rust Build / Check (pull_request) Successful in 30s
Rust Build / Test Suite (pull_request) Successful in 34s
Rust Build / Rustfmt (pull_request) Successful in 24s
Rust Build / Clippy (pull_request) Successful in 29s
Rust Build / build (pull_request) Successful in 38s
tsk-42: Adding initial docker file
2025-08-15 14:51:52 -04:00

16 lines
503 B
YAML

version: '3.8' # Use a recent version
services:
# Your Rust Application Service
auth_api:
build: # Tells docker-compose to build the Dockerfile in the current directory
context: .
ssh: ["default"] # Uses host's SSH agent
container_name: songparser # Optional: Give the container a specific name
ports:
# Map host port 8000 to container port 3000 (adjust as needed)
- "8002:3002"
env_file:
- .env
restart: unless-stopped # Optional: Restart policy