Compare commits

..

2 Commits

Author SHA1 Message Date
Michael (Parker) Parker
1d2a742d68
Merge pull request #54 from parkervcp/master
add bug template
2020-03-03 19:06:25 -08:00
Michael (Parker) Parker
5aef63b7f6
add bug template
sorry this is a mess
2019-11-15 07:42:19 -05:00
3 changed files with 17 additions and 35 deletions

17
.github/ISSUE_TEMPLATE/bugs.md vendored Normal file
View 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:

View File

@ -1,20 +0,0 @@
# ----------------------------------
# Pterodactyl Core Dockerfile
# Environment: Java (glibc support)
# Minimum Panel Version: 0.6.0
# ----------------------------------
FROM python:3-alpine
LABEL author="Michael Parker" maintainer="docker@parkervcp.com"
RUN apk add --no-cache --update \
&& adduser -D -h /home/container container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh
CMD ["/bin/ash", "/entrypoint.sh"]

View File

@ -1,15 +0,0 @@
#!/bin/ash
cd /home/container
# show python version
python --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}