Files
the-pet-loft/deploy/staging/compose.yml
ianshaloom 0da06b965d
All checks were successful
Deploy — Staging / Lint, Typecheck & Test (push) Successful in 2m46s
Deploy — Staging / Build & push — admin (push) Successful in 1m33s
Deploy — Staging / Build & push — storefront (push) Successful in 1m41s
Deploy — Staging / Deploy to staging VPS (push) Successful in 30s
deploy: change ports mapping
2026-03-08 12:00:56 +03:00

21 lines
368 B
YAML

name: petloft-staging
services:
storefront:
image: ${REGISTRY}/storefront:staging
restart: unless-stopped
ports:
- "3001:3000"
env_file:
- path: .env
required: false
admin:
image: ${REGISTRY}/admin:staging
restart: unless-stopped
ports:
- "3002:3001"
env_file:
- path: .env
required: false