Split Railway config per Foundry service

This commit is contained in:
Nathan Flurry 2026-03-12 18:20:09 -07:00
parent 0d83bd5669
commit 334b1cc30d
5 changed files with 22 additions and 1 deletions

View file

@ -182,7 +182,7 @@ foundry-hf *ARGS:
[group('foundry')] [group('foundry')]
foundry-docker-build tag='foundry:local': foundry-docker-build tag='foundry:local':
docker build -f foundry/Dockerfile -t {{tag}} . docker build -f foundry/docker/backend.Dockerfile -t {{tag}} .
[group('foundry')] [group('foundry')]
foundry-desktop-dev: foundry-desktop-dev:

View file

@ -0,0 +1,7 @@
[build]
builder = "DOCKERFILE"
dockerfilePath = "../../foundry/docker/frontend.Dockerfile"
[deploy]
restartPolicyType = "ON_FAILURE"
restartPolicyMaxRetries = 10

View file

@ -0,0 +1,7 @@
[build]
builder = "DOCKERFILE"
dockerfilePath = "../../foundry/docker/frontend.mock.Dockerfile"
[deploy]
restartPolicyType = "ON_FAILURE"
restartPolicyMaxRetries = 10

View file

@ -0,0 +1,7 @@
[build]
builder = "DOCKERFILE"
dockerfilePath = "../../foundry/docker/backend.Dockerfile"
[deploy]
restartPolicyType = "ON_FAILURE"
restartPolicyMaxRetries = 10