mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
chore: integrate Uffizzi PR Environments
This commit is contained in:
parent
b137daeb12
commit
a9d78342ec
1 changed files with 44 additions and 0 deletions
44
docker-compose.uffizzi.yml
Normal file
44
docker-compose.uffizzi.yml
Normal file
|
@ -0,0 +1,44 @@
|
|||
# This compose file is for demonstration only, do not use in prod.
|
||||
version: "3.9"
|
||||
|
||||
x-uffizzi:
|
||||
ingress:
|
||||
service: app
|
||||
port: 3001
|
||||
continuous_previews:
|
||||
deploy_preview_when_pull_request_is_opened: true
|
||||
delete_preview_when_pull_request_is_closed: true
|
||||
share_to_github: true
|
||||
|
||||
services:
|
||||
app:
|
||||
depends_on:
|
||||
- "postgres"
|
||||
build:
|
||||
context: ./
|
||||
dockerfile: ./Dockerfile
|
||||
ports:
|
||||
- 3001:3001
|
||||
environment:
|
||||
TRUST_PROXY_HEADER: 1
|
||||
DB_URL: postgres://postgres:p0stgr3s@localhost:5432/logto
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 2000M
|
||||
entrypoint: /bin/sh
|
||||
command:
|
||||
- "-c"
|
||||
- "npm run cli db seed -- --swe && ENDPOINT=$$UFFIZZI_URL npm start"
|
||||
|
||||
postgres:
|
||||
image: postgres:14-alpine
|
||||
user: postgres
|
||||
environment:
|
||||
POSTGRES_USER: "postgres"
|
||||
POSTGRES_PASSWORD: "p0stgr3s"
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 500M
|
||||
|
Loading…
Reference in a new issue