* update docker configs dockerfile with an updated start command docker-compose file adds custom network name so it can be used in firewalld commands. * update compose file mount changes remove /srv/daemon-data remove /etc/timezone variable changes add TZ * add note about old data folder. * update to go 1.15 Update base image to go version 1.15
		
			
				
	
	
		
			14 lines
		
	
	
		
			365 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			365 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# ----------------------------------
 | 
						|
# Pterodactyl Panel Dockerfile
 | 
						|
# ----------------------------------
 | 
						|
 | 
						|
FROM golang:1.15-alpine
 | 
						|
COPY . /go/wings/
 | 
						|
WORKDIR /go/wings/
 | 
						|
RUN apk add --no-cache upx \
 | 
						|
 && go build -ldflags="-s -w" \
 | 
						|
 && upx --brute wings
 | 
						|
 | 
						|
FROM alpine:latest
 | 
						|
COPY --from=0 /go/wings/wings /usr/bin/
 | 
						|
CMD ["wings","--config", "/etc/pterodactyl/config.yml"] |