Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \
curl \
rlwrap \
unzip \
openjdk-17-jre-headless \
openjdk-21-jre-headless \
openjdk-8-jre-headless \
ca-certificates-java \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN apt-get update && apt-get install -y \
git \
curl \
rlwrap \
openjdk-17-jre-headless \
openjdk-21-jre-headless \
openjdk-8-jre-headless \
ca-certificates-java \
&& curl -fsSL https://deb.nodesource.com/setup_14.x | bash - \
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
mineos:
image: hexparrot/mineos:latest
image: andino66/mineos:latest
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that's not good

container_name: mineos_server
networks:
- mineos
Expand Down
8 changes: 4 additions & 4 deletions install_rootless.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ read -s UIPW
# DOWNLOAD JAVA
cd ~
mkdir -p ~/.local/opt
wget https://download.java.net/java/GA/jdk17.0.2/dfd4a8d0985749f896bed50d7138ee7f/8/GPL/openjdk-17.0.2_linux-x64_bin.tar.gz
tar xf openjdk-17*
mv ~/jdk-17.0.2 ~/.local/opt/
JDK_PATH=$(realpath ~/.local/opt/jdk-17.0.2/bin)
wget https://download.java.net/java/GA/jdk21/fd2272bbf8e04c3dbaee13770090416c/35/GPL/openjdk-21_linux-x64_bin.tar.gz
tar xf openjdk-21*
mv ~/jdk-21 ~/.local/opt/
JDK_PATH=$(realpath ~/.local/opt/jdk-21/bin)

# DOWNLOAD WEBUI FROM GITHUB
git clone https://github.com/hexparrot/mineos-node
Expand Down