Newer
Older
nginx:
image: nginx:1.19.7-alpine
restart: always
ports:
- "4444:80"
command: nginx -g "daemon off;"
volumes:
- ./apps/web/ws-nginx.local.conf:/etc/nginx/conf.d/default.conf
- ./lustre/:/lustre/aoc/cluster/pipeline/docker/workspaces
image: ssa-containers.aoc.nrao.edu/ops/ci/db:workspaces
ports:
- "54322:5432"
environment:
POSTGRES_USER: archive
POSTGRES_PASSWORD: docker
image: rabbitmq:3.8-management
ports:
- "15672:15672"
condor-cm:
build:
context: .
dockerfile: ./config/htcondor/cm/Dockerfile.local
ports:
- 9618
condor-execute:
build:
context: .
dockerfile: ./config/htcondor/execute/Dockerfile.local
volumes:
- ./delivery_root:/tmp/delivery_root
- ./lustre/aoc/cluster/pipeline/docker/workspaces:/lustre/aoc/cluster/pipeline/docker/workspaces
ngas:
build:
context: .
dockerfile: ./Dockerfile.ngas
depends_on:
- db
ports:
- "7777:7777"
volumes:
- ./local_ngas_root:/home/ngas/NGAS
schema:
build:
context: ./schema/
dockerfile: Dockerfile.local
depends_on:
- db
- ./docker.properties:/home/ssa/capo/docker.properties
# Used for doing a DB migration on dsoc-dev
# Uncomment this and run the command `docker compose up schema-dev` and the migration will run
# schema-dev:
# build:
# context: ./schema/
# dockerfile: Dockerfile.local
# command: ["./bin/run-migrations.sh", "dsoc-dev"]
# depends_on:
# - db
# volumes:
# - ./schema:/code/schema
# - ~/.capo:/home/casa/capo
context: .
dockerfile: ./services/workflow/Dockerfile.local
depends_on:
- schema

Andrew Kapuscinski
committed
- ./shared:/packages/shared
- ./apps/cli:/packages/apps/cli

Andrew Kapuscinski
committed
- ./testing:/packages/testing
- ./lustre/aoc/cluster/pipeline/docker/workspaces:/lustre/aoc/cluster/pipeline/docker/workspaces
- ~/.capo:/home/ssa/capo
- ./docker.properties:/home/ssa/capo/docker.properties
- /packages/shared/workspaces/ssa_workspaces.egg-info
- /packages/shared/schema/ssa_schema.egg-info
- /packages/shared/messaging/ssa_messaging.egg-info
- /packages/apps/cli/utilities/wf_monitor/ssa_wf_monitor.egg-info
- /packages/apps/cli/utilities/system_mediator/ssa_system_mediator.egg-info
- /packages/apps/cli/utilities/ws_metrics/ssa_ws_metrics.egg-info
- /packages/apps/cli/utilities/aat_wrest/ssa_aat_wrest.egg-info
- /packages/apps/cli/executables/tmpdir_eraser/ssa_tmpdir_eraser.egg-info
- /packages/apps/cli/executables/pexable/productfetcher/ssa_productfetcher.egg-info
- /packages/apps/cli/executables/pexable/casa_envoy/ssa_casa_envoy.egg-info
- /packages/apps/cli/executables/pexable/vela/ssa_vela.egg-info
- /packages/apps/cli/executables/pexable/delivery/ssa_delivery.egg-info
- /packages/apps/cli/executables/pexable/null/ssa_null.egg-info
context: .
dockerfile: ./services/capability/Dockerfile.local
depends_on:
- schema
- ./docker.properties:/home/ssa/capo/docker.properties

Andrew Kapuscinski
committed
- ./shared:/packages/shared
- ./apps/cli:/packages/apps/cli

Andrew Kapuscinski
committed
- ./testing:/packages/testing
- /code/ssa_capability.egg-info
- /packages/shared/workspaces/ssa_workspaces.egg-info
- /packages/shared/schema/ssa_schema.egg-info
- /packages/shared/messaging/ssa_messaging.egg-info
- /packages/apps/cli/utilities/wf_monitor/ssa_wf_monitor.egg-info
- /packages/apps/cli/utilities/system_mediator/ssa_system_mediator.egg-info
- /packages/apps/cli/utilities/ws_metrics/ssa_ws_metrics.egg-info
- /packages/apps/cli/utilities/aat_wrest/ssa_aat_wrest.egg-info
- /packages/apps/cli/executables/pexable/vela/ssa_vela.egg-info
- /packages/apps/cli/executables/tmpdir_eraser/ssa_tmpdir_eraser.egg-info
- /packages/apps/cli/executables/pexable/productfetcher/ssa_productfetcher.egg-info
- /packages/apps/cli/executables/pexable/casa_envoy/ssa_casa_envoy.egg-info
- /packages/apps/cli/executables/pexable/delivery/ssa_delivery.egg-info
- /packages/apps/cli/executables/pexable/null/ssa_null.egg-info
context: .
dockerfile: ./services/notification/Dockerfile.local
ports:
- "3458:3458"
depends_on:
- schema
- ./docker.properties:/home/ssa/capo/docker.properties

Andrew Kapuscinski
committed
- ./shared:/packages/shared
- ./apps/cli:/packages/apps/cli

Andrew Kapuscinski
committed
- ./testing:/packages/testing
- /packages/shared/workspaces/ssa_workspaces.egg-info
- /packages/shared/schema/ssa_schema.egg-info
- /packages/shared/messaging/ssa_messaging.egg-info
- /packages/apps/cli/utilities/wf_monitor/ssa_wf_monitor.egg-info
- /packages/apps/cli/utilities/system_mediator/ssa_system_mediator.egg-info
- /packages/apps/cli/utilities/ws_metrics/ssa_ws_metrics.egg-info
- /packages/apps/cli/utilities/aat_wrest/ssa_aat_wrest.egg-info
- /packages/apps/cli/executables/pexable/vela/ssa_vela.egg-info
- /packages/apps/cli/executables/tmpdir_eraser/ssa_tmpdir_eraser.egg-info
- /packages/apps/cli/executables/pexable/productfetcher/ssa_productfetcher.egg-info
- /packages/apps/cli/executables/pexable/casa_envoy/ssa_casa_envoy.egg-info
- /packages/apps/cli/executables/pexable/delivery/ssa_delivery.egg-info
- /packages/apps/cli/executables/pexable/null/ssa_null.egg-info
frontend:
build:
context: .
dockerfile: ./apps/web/Dockerfile.local
init: true
ports:
- "4200:4200"

Nathan Hertz
committed
depends_on:
- capability
- workflow
volumes:
- ./apps/web:/code
- /code/node_modules