/
CI-CD/Production setup

CI-CD/Production setup

(DRAFT)

Expected folder structure on prod

. ├── drone-image-manipulation ├── drone-image_processing-api

 

Prod deployment:

  • Prod only pulls from develop branch

go to drone-image_processing-api/cicd/

MY_UID="$(id -u)" MY_GID="$(id -g)" STORAGE_PATH=/cals-research-station docker compose -f docker-compose.prod.yml up --force-recreate --build --remove-orphans -d

 

Development

  • create a docker network if it’s not already created (prod setup will take care of creating it)
    docker network create drone-network

  • For frontend development
    docker compose --profile dev-prod up --force-recreate --build --remove-orphans in
    drone-image-manipulation for frontend development

    • Frontend hosted on port 3000

  • For frontend and backend development
    docker compose --profile dev-local up --force-recreate --build --remove-orphans in
    drone-image-manipulation for frontend development

    • Depends on local api deployment and serves local files from specified folder

    • API + File server will be routed via local nginx docker on port 8888

 

Related content