gmokercom/compose.yaml

47 lines
822 B
YAML
Raw Normal View History

2024-09-10 10:32:20 +00:00
---
services:
2024-10-10 15:28:29 +00:00
front-end:
build: ./front_end
restart: unless-stopped
ports:
2024-09-03 15:54:37 +00:00
- "8000:5173"
2024-10-10 15:28:29 +00:00
environment:
- PROD_URL=${PROD_URL}
depends_on:
- back-end
back-end:
build: ./back-end
restart: unless-stopped
ports:
- "3000:3000"
command:
- sh
- -c
- "bunx prisma migrate deploy && bunx prisma generate && bun index.js"
environment:
- POSTGRES_DB
- POSTGRES_USER
- POSTGRES_PASSWORD
- POSTGRES_HOST=db
depends_on:
- redis
- db
2024-09-10 10:32:20 +00:00
redis:
2024-09-03 15:54:37 +00:00
image: "valkey/valkey:7"
2024-10-10 15:28:29 +00:00
restart: unless-stopped
db:
image: "postgres:17"
restart: unless-stopped
environment:
- POSTGRES_DB
- POSTGRES_USER
- POSTGRES_PASSWORD
volumes:
- db:/var/lib/postgresql/data
volumes:
db: