feat: add docker compose file

This commit is contained in:
alireza
2023-11-07 20:44:21 +03:30
parent 064d642b7e
commit 9ce98b6bee
6 changed files with 70 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
module.exports = {
apps: [
{
name: 'arakrail',
exec_mode: 'cluster',
instances: 'max', // Or a number of instances
script: './node_modules/nuxt/bin/nuxt.js',
args: 'start'
}
]
}