Files
image-apiv3/docker-entrypoint.sh
Beyhan Oğur 031582ea2c first commit
2026-04-26 22:11:03 +03:00

10 lines
195 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/sh
set -e
# Uploads klasörünü oluştur ve izinleri ayarla (volume mount için)
mkdir -p /app/public/uploads
chmod -R 775 /app/public/uploads
# Uygulamayı başlat
exec node server.js