update todo
This commit is contained in:
parent
12273f424e
commit
9168cd1dc6
3
TODO.md
3
TODO.md
@ -1,2 +1,3 @@
|
||||
- RDE Application DNS check not working
|
||||
- Check DNS configurations for app/service/coolify with RDE and local engines
|
||||
- Check DNS configurations for app/service/coolify with RDE and local engines
|
||||
- Refactor PR deployments (/apps/api/src/routes/api/v1/applications/handlers.ts#L744) and create previews model inside coolify db?
|
@ -733,7 +733,7 @@ export async function getPreviews(request: FastifyRequest<OnlyId>) {
|
||||
const applicationSecrets = secrets.filter((secret) => !secret.isPRMRSecret);
|
||||
const PRMRSecrets = secrets.filter((secret) => secret.isPRMRSecret);
|
||||
const application = await prisma.application.findUnique({ where: { id }, include: { destinationDocker: true } });
|
||||
const { stdout } = await executeDockerCmd({ dockerId: application.destinationDocker.id, command: `docker container ls --filter 'name=${id}-' --format "{{json .}}"` })
|
||||
const { stdout } = await executeDockerCmd({ dockerId: application.destinationDocker.id, command: `docker container ls --filter 'name=${id}-' --format "{{json .}}"` })
|
||||
if (stdout === '') {
|
||||
return {
|
||||
containers: [],
|
||||
|
Loading…
Reference in New Issue
Block a user