Aber Wenn ich versuche, den folgenden Befehl auszuführen: keploy record -c "docker compose up" --container-name springSampleApp --build-delay 10, erhalte ich die Fehlermeldung:
Code: Select all
version: 2.3.0-beta48
🐰 Keploy: 2025-01-07T17:45:53+05:30 INFO Starting keploy in docker with image {"image:": "ghcr.io/keploy/keploy:v2.3.0-beta48"}
🐰 Keploy: 2025-01-07T17:45:53+05:30 INFO Starting keploy in docker with default context, as that is the current context.
docker: invalid reference format.
See 'docker run --help'.
🐰 Keploy: 2025-01-07T17:45:54+05:30 ERROR failed to start keploy in docker {"error": "exit status 125"}
🐰 Keploy: 2025-01-07T17:45:54+05:30 ERROR failed to run the command in docker {"error": "exit status 125"}
🐰 Keploy: 2025-01-07T17:45:54+05:30 ERROR failed to validate flags {"error": "exit status 125"}
Code: Select all
version: '3'
services:
sample-app:
image: custom-image:a2a428c7d399c6ad867b544b59141188121863d6
build:
context: .
container_name: springSampleApp
ports:
- "8080:8080"
networks:
- keploy-network
networks:
keploy-network:
external: true
Code: Select all
FROM artifactory.aexp.com/dockerproxy/openjdk:21-jdk
COPY . /app
WORKDIR /app/
USER root
RUN chmod -R 755 /app/
EXPOSE 8080
CMD ["java","-jar","-Djavax.net.debug=ssl:handshake","-DAPP_NAME=log-readr-writer","build/libs/app-0.0.1-SNAPSHOT.jar","--server.address=0.0.0.0","--server.port=8080"]