This commit is contained in:
Graham McIntire 2025-06-13 13:22:52 -05:00
parent 1badb192b5
commit 4af05a6422
2 changed files with 3 additions and 3 deletions

View file

@ -17,14 +17,14 @@ spec:
spec:
initContainers:
- name: db-migrate
image: your-ghcr-username/aprs-app:latest # Placeholder, will be set by CI
image: aprs/aprs-app:latest # Placeholder, will be set by CI
command: ["/app/bin/migrate"]
envFrom:
- secretRef:
name: aprs-secrets
containers:
- name: aprs-app
image: your-ghcr-username/aprs-app:latest # Placeholder, will be set by CI
image: aprs/aprs-app:latest # Placeholder, will be set by CI
ports:
- containerPort: 4000 # Default Phoenix port
envFrom:

View file

@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: postgres
image: postgres:15 # Using a recent version
image: postgres:16
ports:
- containerPort: 5432
env: