mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 03:00:48 +00:00
Split Railway config per Foundry service
This commit is contained in:
parent
e79a3d9389
commit
70d2cc35d7
5 changed files with 22 additions and 1 deletions
2
justfile
2
justfile
|
|
@ -182,7 +182,7 @@ foundry-hf *ARGS:
|
|||
|
||||
[group('foundry')]
|
||||
foundry-docker-build tag='foundry:local':
|
||||
docker build -f foundry/Dockerfile -t {{tag}} .
|
||||
docker build -f foundry/docker/backend.Dockerfile -t {{tag}} .
|
||||
|
||||
[group('foundry')]
|
||||
foundry-desktop-dev:
|
||||
|
|
|
|||
7
railway/foundry-frontend/railway.toml
Normal file
7
railway/foundry-frontend/railway.toml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[build]
|
||||
builder = "DOCKERFILE"
|
||||
dockerfilePath = "../../foundry/docker/frontend.Dockerfile"
|
||||
|
||||
[deploy]
|
||||
restartPolicyType = "ON_FAILURE"
|
||||
restartPolicyMaxRetries = 10
|
||||
7
railway/foundry-mock/railway.toml
Normal file
7
railway/foundry-mock/railway.toml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[build]
|
||||
builder = "DOCKERFILE"
|
||||
dockerfilePath = "../../foundry/docker/frontend.mock.Dockerfile"
|
||||
|
||||
[deploy]
|
||||
restartPolicyType = "ON_FAILURE"
|
||||
restartPolicyMaxRetries = 10
|
||||
7
railway/foundry/railway.toml
Normal file
7
railway/foundry/railway.toml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[build]
|
||||
builder = "DOCKERFILE"
|
||||
dockerfilePath = "../../foundry/docker/backend.Dockerfile"
|
||||
|
||||
[deploy]
|
||||
restartPolicyType = "ON_FAILURE"
|
||||
restartPolicyMaxRetries = 10
|
||||
Loading…
Add table
Add a link
Reference in a new issue