Usage and Bills without any active deploy
I have one project created (Spring Boot Eureka). I have deployed it succesfully, but now 0 deployments are live. I removed them. Surprisingly, my usage is growing (nothing important, just $0.0038). Do I need to completely delete the app in order to stop adding expenses? Thanks in advance
19 Replies
Project ID:
N/A
You might find these helpful:
- Is it possible to turn a deployment, service or project off so it doesn't use any resources?
- How can I temporarily disable a project?
- Deployments and plugins stopped, site is unreachable, I am confused
⚠️ experimental feature
N/A
do you have a database of any kind?
nope, just a spring boot eureka
service id 505703f3-dc94-4b65-8e25-eca5783bc650
screenshot?
and you have no other projects with any deployments or databases?
this is the only one
and I don't have more environments
It has attached a railway domain, maybe that?
can you still access it from the domain?
nope unir-backend-eureka.up.railway.app↗
https://unir-backend-eureka.up.railway.app/
likely a phantom container
provide your project id please
where is it?
in the url
3e72de25-24dd-4546-bc3f-c79bea6c71e3
Flagging this thread. A team member will be with you shortly.
maybe... something wrong with the Dockerfile?? but it shouldn be..
Build stage
FROM maven:3.8.2-jdk-11 AS build
COPY . .
RUN mvn clean package
FROM openjdk:11
EXPOSE 8761
COPY --from=build /target/eureka-0.0.1-SNAPSHOT.jar app.jar
ENTRYPOINT ["java", "-jar", "/app.jar"]
^
^