diff --git a/docker-compose.yml b/docker-compose.yml index 7b9aa00..f273a6a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -37,27 +37,27 @@ services: depends_on: - postgres - Paper Dynasty API (optional - can run locally with 'uvicorn app.main:app --reload') - Uncomment this section if you want to run the API in Docker - api: - build: . - restart: unless-stopped - container_name: pd_api - volumes: - - ./storage:/usr/src/app/storage - - ./logs:/usr/src/app/logs - ports: - - "8000:80" - environment: - - DATABASE_TYPE=postgresql - - POSTGRES_HOST=pd_postgres - - POSTGRES_DB=${POSTGRES_DB:-pd_master} - - POSTGRES_USER=${POSTGRES_USER:-pd_admin} - - POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-pd_dev_password} - - LOG_LEVEL=${LOG_LEVEL:-INFO} - - API_TOKEN=${API_TOKEN:-dev_token} - depends_on: - - postgres + # Paper Dynasty API (optional - can run locally with 'uvicorn app.main:app --reload') + # Uncomment this section if you want to run the API in Docker + # api: + # build: . + # restart: unless-stopped + # container_name: pd_api + # volumes: + # - ./storage:/usr/src/app/storage + # - ./logs:/usr/src/app/logs + # ports: + # - "8000:80" + # environment: + # - DATABASE_TYPE=postgresql + # - POSTGRES_HOST=pd_postgres + # - POSTGRES_DB=${POSTGRES_DB:-pd_master} + # - POSTGRES_USER=${POSTGRES_USER:-pd_admin} + # - POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-pd_dev_password} + # - LOG_LEVEL=${LOG_LEVEL:-INFO} + # - API_TOKEN=${API_TOKEN:-dev_token} + # depends_on: + # - postgres volumes: postgres_data: