Compare commits

..

18 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
Dane Everitt
e15a911636
Merge pull request #34 from pterodactyl/revert-33-python3
Revert "Add Python3 to the master imagees repo"
2018-10-28 20:12:44 -07:00
Dane Everitt
a25a9588d2
Revert "Add Python3 to the master imagees repo" 2018-10-28 20:12:35 -07:00
Dane Everitt
85b8f2e58f
Merge pull request #33 from parkervcp/python3
Add Python3 to the master imagees repo
2018-10-28 12:32:29 -07:00
Michael (Parker) Parker
9a7610cd3d updated python
Moved to latest python as a base and changed the entrypoint to show the python version instead of the 
 non-existent java version.
2018-10-07 09:12:09 -04:00
Michael (Parker) Parker
47f1c87452
Merge pull request #17 from Exonical/python3
Fix Maintainer Deprecation
2018-07-13 18:52:30 -04:00
Exonical
175fa9372b
its fine 2018-07-13 16:42:38 -04:00
Unknown
c4375a68c4 Fix Maintainer Deprecation 2018-07-13 16:09:57 -04:00
Michael (Parker) Parker
d079417018 fixed entrypoint CMD 2018-03-27 08:51:14 -04:00
Michael (Parker) Parker
3cdb63f16a fixing the entrypoint 2018-03-25 09:40:28 -04:00
Michael (Parker) Parker
fc5f6b327a removing unnecessary things 2018-03-25 09:30:52 -04:00
Michael (Parker) Parker
c8207d06ee more python requirements 2018-03-24 21:54:15 -04:00
Michael (Parker) Parker
f493215bc1 basic python 3.6 support
New image for python 3
2018-03-24 20:29:58 -04:00
Michael (Parker) Parker
5285ad483c Backt o master 2018-02-25 14:23:55 -05:00
Michael (Parker) Parker
e34921a403
Merge pull request #2 from Bl4ckSpr4y/samp
Samp
2018-02-25 14:21:10 -05:00
Bl4ckSpr4y
c3d35bd607
Create entrypoint.sh 2018-02-25 19:58:37 +02:00
Bl4ckSpr4y
aeac09ca25
Create Dockerfile 2018-02-25 19:58:11 +02:00
3 changed files with 17 additions and 30 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,18 +0,0 @@
# ----------------------------------
# Pterodactyl Core Dockerfile
# Environment: glibc
# Minimum Panel Version: 0.6.0
# ----------------------------------
FROM node:8-alpine
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
RUN apk add --no-cache --update libc6-compat ffmpeg \
&& 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,12 +0,0 @@
#!/bin/ash
cd /home/container
# 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}