skip to Main Content

docker top: unrecognized option: /

I have a Dockerfile FROM eclipse-temurin:17-jre-alpine LABEL authors="sort-architectures" WORKDIR /app/kafka COPY ./kafka-3.5.1-src . CMD ls -lisa bin | grep kafka-s ENTRYPOINT ["top", "-b"] but when I build it and run it docker build . docker run IMAGE-SHA256 I get the…

VIEW QUESTION

Only on EC2 Ubuntu, elasticsearch by docker doesn't work

Error log { "@timestamp":"2024-03-19T14:25:08.633Z", "log.level":"ERROR", "message":"fatal exception while booting Elasticsearch", "ecs.version":"1.2.0", "service.name":"ES_ECS", "event.dataset":"elasticsearch.server", "process.thread.name":"main", "log.logger":"org.elasticsearch.bootstrap.Elasticsearch", "elasticsearch.node.name":"ella", "elasticsearch.cluster.name":"es", "error.type":"java.lang.IllegalStateException", "error.message":"failed to obtain node locks, tried [/usr/share/elasticsearch/data]; maybe these locations are not writable or multiple nodes were started on the same data…

VIEW QUESTION

Why can't get a connection to Cassandra running on Docker from a Spring Boot instace using spring-boot-starter-data-cassandra on first boot?

I have the following cassandra: image: cassandra:latest ports: - 9042:9042 volumes: - ./cassandra/image:/var/lib/cassandra environment: - CASSANDRA_AUTHENTICATOR=AllowAllAuthenticator - CASSANDRA_AUTHORIZER=AllowAllAuthorizer The cassandra instance networking looks like this... "Networks": { "cbusha-infra_default": { "IPAMConfig": null, "Links": null, "Aliases": [ "cbusha-infra-cassandra-1", "cassandra", "572f0770b41e" ], "MacAddress":…

VIEW QUESTION
Back To Top
Search