Rename compose file to .yaml for Coolify

This commit is contained in:
AI Bot
2026-07-30 13:02:26 +05:30
parent 07a1e8f37f
commit 2452ab3006
+28
View File
@@ -0,0 +1,28 @@
services:
web:
restart: always
build:
context: .
target: production
ports:
- "3001:80"
environment:
- NODE_ENV=production
labels:
- "coolify.endpoint=true"
api:
restart: always
build:
context: ./backend
ports:
- "3005:3005"
volumes:
- data-volume:/app/data
- uploads-volume:/app/uploads
environment:
- NODE_ENV=production
volumes:
data-volume:
uploads-volume: