Update coolify.json

This commit is contained in:
Andras Bacsai
2025-12-03 10:33:04 +01:00
committed by GitHub
parent 9b20feddc7
commit 64fb19beaa

View File

@@ -1,16 +1,19 @@
{ {
"$schema": "https://cdn.coollabs.io/coolify/coolify.schema.json", "version": "1.0",
"name": "test-app",
"build": { "build": {
"build_pack": "dockerfile", "type": "nixpacks",
"base_directory": "/dockerfile" "install_command": "npm install",
"build_command": "npm run build",
"start_command": "npm start"
}, },
"network": {
"domains": { "domains": {
"fqdn": "http://hellotwitter.127.0.0.1.sslip.io" "ports_exposes": "3000"
}, },
"ports": { "environment_variables": {
"expose": "80", "production": [
"mappings": "8888:80" {"key": "DB_PASSWORD", "value": "SERVICE_PASSWORD_64"},
} {"key": "APP_SECRET", "value": "SERVICE_BASE64_32"}
]
} }
} }