gmokercom/compose.yaml

44 lines
777 B
YAML
Raw Permalink 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:
2024-10-22 15:47:43 +00:00
- PROD_URL
2024-10-10 15:28:29 +00:00
depends_on:
- back-end
back-end:
build: ./back-end
restart: unless-stopped
ports:
- "3000:3000"
command:
- sh
- -c
2024-10-22 15:47:43 +00:00
- "bunx prisma migrate deploy && bun index.ts"
2024-10-10 15:28:29 +00:00
environment:
2024-10-22 15:47:43 +00:00
- DATABASE_URL=postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@db/$POSTGRES_DB
2024-10-10 15:28:29 +00:00
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: