Darren Sisson

Results 119 comments of Darren Sisson

@CelestialLemon you're mapping port 3000 on host to port 80 in container?? can you try removing the port mappings just leave it as port 3000 exposed assuming your app is...

if youre running on port 80 then just put expose 80 and leave port mapping blank, oh i misread so you arent using a domain to access but only through...

in your first image you had picked static site

@AlejandroSanchez90 if it has no ssr, you can use static, but you would need to set publish directory to /out not /

so, i think i was mistaken regarding the scoping of Build ARGS a globally scoped Build ARG still needs to be redefined in any stage it is used so your...

@TheMikeyRoss the root cert needs to be where you are connecting from, so you would need it on your local machine

@TheMikeyRoss it is, but since you're wide open anyone can still spam your db with connection attempts, or use man in the middle to intercept your connection since you aren't...

@shsunmoonlee see my answer in the other post https://github.com/coollabsio/coolify/issues/5160#issuecomment-2728226101

@hamanuha this is an issue with how docker build handles build arguments meaning they are not interpolated from other build arguments i believe the only work arounds would be 1)...

@terion-name you need to use a custom compose command, for build/start since coolifys compose command uses -f, it means only the single file is passed in (the one you select)...