summaryrefslogtreecommitdiff
path: root/docker/bedrockconnect
diff options
context:
space:
mode:
authorxTITUSMAXIMUSX <62310795+xTITUSMAXIMUSX@users.noreply.github.com>2023-02-13 01:11:48 -0600
committerGitHub <noreply@github.com>2023-02-13 02:11:48 -0500
commitb26b895ed568a446b5697bb68cb7b3c18b360052 (patch)
tree35246493be32c6c1cdedd045cf411a8dfa796e5a /docker/bedrockconnect
parentb8710b201f9a95f137545fecd5197ddee8080c6e (diff)
downloadBedrockConnect-b26b895ed568a446b5697bb68cb7b3c18b360052.tar.gz
BedrockConnect-b26b895ed568a446b5697bb68cb7b3c18b360052.tar.bz2
BedrockConnect-b26b895ed568a446b5697bb68cb7b3c18b360052.zip
Adding bind9 docker and updating scripts (#367)
* Updating * update script * Update install-bind.sh * Fixed additional-from-cache no issue * Add docker install script * update for new install script * Add null output to service start * Trying different install method * Added exit code 0 * testing exit off * Fixed install method * Inserted args on build for IP addresses * Updated URL to Pugmatt github
Diffstat (limited to 'docker/bedrockconnect')
-rw-r--r--docker/bedrockconnect/Dockerfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/docker/bedrockconnect/Dockerfile b/docker/bedrockconnect/Dockerfile
new file mode 100644
index 0000000..ca8157d
--- /dev/null
+++ b/docker/bedrockconnect/Dockerfile
@@ -0,0 +1,6 @@
+FROM openjdk:11
+RUN mkdir -p /docker/brc
+ADD https://github.com/Pugmatt/BedrockConnect/releases/latest/download/BedrockConnect-1.0-SNAPSHOT.jar /docker/brc
+WORKDIR /docker/brc
+EXPOSE 19132/udp
+CMD ["java", "-Xms256M", "-Xmx256M", "-jar", "BedrockConnect-1.0-SNAPSHOT.jar", "nodb=true"]