dashboardjavacloudcoapiotiot-analyticsiot-platformiot-solutionskafkalwm2mmicroservicesmiddlewaremqttnettyplatformsnmpthingsboardvisualizationwebsocketswidgets
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
318 B
13 lines
318 B
FROM cassandra
|
|
|
|
WORKDIR /opt/cassandra
|
|
|
|
COPY dao/src/main/resources/cassandra/schema.cql /opt/cassandra
|
|
|
|
COPY entrypoint-with-db-init.sh /opt/cassandra/entrypoint-with-db-init.sh
|
|
|
|
RUN chmod +x /opt/cassandra/entrypoint-with-db-init.sh
|
|
|
|
ENTRYPOINT ["/opt/cassandra/entrypoint-with-db-init.sh"]
|
|
|
|
CMD ["cassandra", "-f"]
|
|
|