sha256:df48ca0b75c7461b3a132ec3311b5de3b30f57396ba0aa78e3a677bc70d5ea3f
Last pushed
8 months by donnyd01
Type
Compose
Manifest digest
sha256:df48ca0b75c7461b3a132ec3311b5de3b30f57396ba0aa78e3a677bc70d5ea3f
services:
frontend:
image: donnyd01/bugboard26-frontend:latest
build:
dockerfile: frontend.Dockerfile
context: frontend/
ports:
- "3000:3000"
depends_on:
backend:
condition: service_started
backend:
image: donnyd01/bugboard26-backend:latest
build:
dockerfile: backend.Dockerfile
context: backend/
ports:
- "8080:8080"
environment:
SPRING_DATASOURCE_PASSWORD: 3663
AZURE_STORAGE_CONNECTION_STRING: DefaultEndpointsProtocol=https;AccountName=bugboardartifacts;AccountKey=b3g3Jm021Ii7Ks4uGdkOBq2BkqESALiRQeZhIuZZgpIbF+hfFxwGuM3FTH/lSk+4PdQc1ohB0iWh+AStnsRI3A==;EndpointSuffix=core.windows.net
SERVER_SSL_KEY_STORE_PASSWORD: ForzaNapoli
depends_on:
database:
condition: service_healthy
restart: true
database:
image: donnyd01/bugboard26-database:latest
build:
dockerfile: database.Dockerfile
context: database/
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 3663
POSTGRES_DB: bugboard26
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}" ]
interval: 10s
retries: 5
start_period: 10s
timeout: 10sdocker compose -f oci://donnyd01/bugboard26:latest upUse the above command to pull and run the Compose file. Learn more.