Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d2a742d68 | ||
|
|
5aef63b7f6 | ||
|
|
e15a911636 | ||
|
|
a25a9588d2 | ||
|
|
85b8f2e58f | ||
|
|
9a7610cd3d | ||
|
|
47f1c87452 | ||
|
|
175fa9372b | ||
|
|
c4375a68c4 | ||
|
|
d079417018 | ||
|
|
3cdb63f16a | ||
|
|
fc5f6b327a | ||
|
|
c8207d06ee | ||
|
|
f493215bc1 | ||
|
|
5285ad483c | ||
|
|
e34921a403 | ||
|
|
c3d35bd607 | ||
|
|
aeac09ca25 |
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:
|
||||||
18
Dockerfile
18
Dockerfile
|
|
@ -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"]
|
|
||||||
|
|
@ -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}
|
|
||||||
Loading…
Reference in New Issue
Block a user