All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 10s
30 lines
736 B
YAML
30 lines
736 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: sneakyswole-dev
|
|
ports:
|
|
- "${APP_PORT:-8000}:8000"
|
|
volumes:
|
|
- sneakyswole-data:/app/data
|
|
- ./app:/app/app
|
|
- ./config:/app/config
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- APP_ENV=development
|
|
- APP_LOG_LEVEL=debug
|
|
command: ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 10s
|
|
|
|
volumes:
|
|
sneakyswole-data:
|
|
driver: local
|