Compare commits
2 Commits
java-8-zul
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d2a742d68 | ||
|
|
5aef63b7f6 |
17
.github/ISSUE_TEMPLATE/bugs.md
vendored
Normal file
17
.github/ISSUE_TEMPLATE/bugs.md
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
name: "\U0001F41B Bug Report"
|
||||
about: Report an issue for an image
|
||||
|
||||
---
|
||||
|
||||
Please fill out the information bellow and remove from the line up
|
||||
If you just submit a bug with no info I will close out your bug.
|
||||
---------------
|
||||
|
||||
Panel Version: (version number)
|
||||
Daemon Version: (version number)
|
||||
Service: (minecraft/factorio/etc)
|
||||
Docker Image:
|
||||
Modified: (yes/no) (did you add or change things, this includes startup configs/install scripts/variables)
|
||||
|
||||
Errors that you are experiencing:
|
||||
27
Dockerfile
27
Dockerfile
|
|
@ -1,27 +0,0 @@
|
|||
# ----------------------------------
|
||||
# Pterodactyl Core Dockerfile
|
||||
# Environment: Java (glibc support)
|
||||
# Minimum Panel Version: 0.6.0
|
||||
# ----------------------------------
|
||||
FROM debian:9.11-slim
|
||||
|
||||
LABEL author="WGOS" maintainer="wgos@wgos.org"
|
||||
|
||||
RUN apt update && apt upgrade -y \
|
||||
&& apt install -y gnupg \
|
||||
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 \
|
||||
--recv-keys 0xB1998361219BD9C9 \
|
||||
&& echo "deb http://repos.azulsystems.com/debian stable main" >> /etc/apt/sources.list.d/zulu.list \
|
||||
&& mkdir -p /usr/share/man/man1 \
|
||||
&& apt update \
|
||||
&& apt install -y curl ca-certificates openssl git tar sqlite fontconfig iproute2 tzdata zre-8 \
|
||||
&& useradd -d /home/container -m container
|
||||
|
||||
USER container
|
||||
ENV USER=container HOME=/home/container
|
||||
|
||||
WORKDIR /home/container
|
||||
|
||||
COPY ./entrypoint.sh /entrypoint.sh
|
||||
|
||||
CMD ["/bin/bash", "/entrypoint.sh"]
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
#!/bin/bash
|
||||
cd /home/container
|
||||
|
||||
# Print information
|
||||
echo "Running on Debian $(cat /etc/debian_version)"
|
||||
echo "Current timezone is: $(cat /etc/timezone)"
|
||||
java -version
|
||||
|
||||
# Make internal Docker IP address available to processes.
|
||||
export INTERNAL_IP=`ip route get 1 | awk '{print $NF;exit}'`
|
||||
|
||||
# Replace Startup Variables
|
||||
MODIFIED_STARTUP=`eval echo $(echo ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')`
|
||||
echo ":/home/container$ ${MODIFIED_STARTUP}"
|
||||
|
||||
# Run the Server
|
||||
eval ${MODIFIED_STARTUP}
|
||||
Loading…
Reference in New Issue
Block a user