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
21 lines
368 B
YAML
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
|