Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
docker-pterodactyl-legacy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
docker-pterodactyl-legacy
Commits
22266767
Commit
22266767
authored
Nov 15, 2018
by
Cameron Carney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated panel:v0.7.11; daemon:v0.6.8; added sftp:v1.0.1
parent
941cdde2
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
6 deletions
+29
-6
docker-compose.extra.yml
docker-compose.extra.yml
+8
-1
docker-compose.yml
docker-compose.yml
+2
-2
manifest/daemon/Dockerfile
manifest/daemon/Dockerfile
+3
-2
manifest/panel/Dockerfile
manifest/panel/Dockerfile
+1
-1
manifest/sftp/Dockerfile
manifest/sftp/Dockerfile
+15
-0
No files found.
docker-compose.extra.yml
View file @
22266767
...
...
@@ -42,3 +42,10 @@
# restart: always
# volumes_from:
# - panel
sftp
:
build
:
context
:
./manifest/sftp
image
:
ccarney16/pterodactyl-sftp:v1.0.1
restart
:
always
volumes_from
:
-
daemon
\ No newline at end of file
docker-compose.yml
View file @
22266767
...
...
@@ -38,7 +38,7 @@ services:
-
cache
-
mysql
env_file
:
.env
image
:
ccarney16/pterodactyl-panel:v0.7.1
0
image
:
ccarney16/pterodactyl-panel:v0.7.1
1
restart
:
always
volumes
:
-
./data:/data
...
...
@@ -57,7 +57,7 @@ services:
dockerfile
:
Dockerfile
depends_on
:
-
panel
image
:
ccarney16/pterodactyl-daemon:v0.6.
5
image
:
ccarney16/pterodactyl-daemon:v0.6.
8
ports
:
-
8080:8080
privileged
:
true
...
...
manifest/daemon/Dockerfile
View file @
22266767
...
...
@@ -2,7 +2,8 @@ FROM node:8-alpine
MAINTAINER
Cameron Carney <ccarney16@live.com>
ENV
DAEMON_VERSION=v0.6.5
ENV
DAEMON_VERSION=v0.6.8 \
UID=500
WORKDIR
/srv/daemon
...
...
@@ -12,7 +13,7 @@ RUN \
&&
tar
--strip-components
=
1
-xzvf
daemon.tar.gz
\
&&
rm
-f
daemon.tar.gz
\
&&
npm
install
--production
\
&&
addgroup
-S
-g
500 pterodactyl
&&
adduser
-S
-D
-H
-G
pterodactyl
-u
500
-s
/bin/false pterodactyl
\
&&
addgroup
-S
-g
${
UID
}
pterodactyl
&&
adduser
-S
-D
-H
-G
pterodactyl
-u
${
UID
}
-s
/bin/false pterodactyl
\
&&
apk del curl make gcc g++ python gnupg
\
&&
rm
-rf
/root/.npm /root/.node-gyp /root/.gnupg
\
/var/cache/apk/
*
/tmp/
*
...
...
manifest/panel/Dockerfile
View file @
22266767
...
...
@@ -3,7 +3,7 @@ FROM alpine:edge
MAINTAINER
Cameron Carney <ccarney16@live.com>
ENV
STARTUP_TIMEOUT=5 \
PANEL_VERSION=v0.7.1
0
PANEL_VERSION=v0.7.1
1
WORKDIR
/var/www/html
...
...
manifest/sftp/Dockerfile
0 → 100644
View file @
22266767
FROM
alpine:latest
ENV
VERSION=v1.0.1 \
UID=500
RUN
mkdir
/srv/daemon
-p
;
\
wget
-P
/srv/daemon https://github.com/pterodactyl/sftp-server/releases/download/
${
VERSION
}
/sftp-server
;
\
chmod
+x /srv/daemon/sftp-server
;
\
addgroup
-S
-g
${
UID
}
pterodactyl
&&
adduser
-S
-D
-H
-G
pterodactyl
-u
${
UID
}
-s
/bin/false pterodactyl
EXPOSE
2022
WORKDIR
/srv/daemon
ENTRYPOINT
[ "./sftp-server" ]
CMD
[ "-port", "2022" ]
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment