mirror of
				https://github.com/factoriotools/factorio-docker.git
				synced 2025-10-31 00:48:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM frolvlad/alpine-glibc:alpine-3.6
 | |
| #FROM ubuntu:18.04
 | |
| 
 | |
| MAINTAINER https://github.com/dtandersen/docker_factorio_server
 | |
| 
 | |
| ARG USER=factorio
 | |
| ARG GROUP=factorio
 | |
| ARG PUID=845
 | |
| ARG PGID=845
 | |
| 
 | |
| ENV PORT=34197 \
 | |
|     RCON_PORT=27015 \
 | |
|     VERSION=0.16.0 \
 | |
|     SHA1=b4d8d6db02aff914b823d5f525c0f0f2acd9c355
 | |
| #    VERSION=0.15.40 \
 | |
| #    SHA1=f79a975f6b8c0ee87e2fa60f7d1f7133f332c3ec
 | |
| 
 | |
| VOLUME /factorio
 | |
| 
 | |
| RUN mkdir -p /opt && \
 | |
| #    apt-get update && \
 | |
| #    apt-get install -y curl xz-utils
 | |
|     apk add --update --no-cache tini pwgen && \
 | |
|     apk add --update --no-cache --virtual .build-deps curl && \
 | |
|     curl -sSL https://www.factorio.com/get-download/$VERSION/headless/linux64 \
 | |
|         -o /tmp/factorio_headless_x64_$VERSION.tar.xz && \
 | |
|     echo "$SHA1  /tmp/factorio_headless_x64_$VERSION.tar.xz" | sha1sum -c && \
 | |
|     tar xf /tmp/factorio_headless_x64_$VERSION.tar.xz --directory /opt && \
 | |
|     chmod -R ugo=rwx /opt/factorio && \
 | |
|     rm /tmp/factorio_headless_x64_$VERSION.tar.xz && \
 | |
|     ln -s /factorio/saves /opt/factorio/saves && \
 | |
|     ln -s /factorio/mods /opt/factorio/mods && \
 | |
|     apk del .build-deps && \
 | |
|     addgroup -g $PGID -S $GROUP && \
 | |
|     adduser -u $PUID -G $USER -s /bin/sh -SDH $GROUP && \
 | |
|     chown -R $USER:$GROUP /opt/factorio /factorio
 | |
| 
 | |
| EXPOSE $PORT/udp $RCON_PORT/tcp
 | |
| 
 | |
| COPY ./docker-entrypoint.sh /
 | |
| 
 | |
| #USER $USER
 | |
| 
 | |
| #ENTRYPOINT ["/sbin/tini", "--"]
 | |
| #CMD ["/docker-entrypoint.sh"]
 | |
| ENTRYPOINT ["/docker-entrypoint.sh"]
 | |
| CMD ["/opt/factorio/bin/x64/factorio", \
 | |
|     "--port", "$PORT", \
 | |
|     "--start-server-load-latest", \
 | |
|     "--server-settings $CONFIG/server-settings.json", \
 | |
|     "--server-whitelist $CONFIG/server-whitelist.json", \
 | |
|     "--server-banlist $CONFIG/server-banlist.json", \
 | |
|     "--rcon-port $RCON_PORT", \
 | |
|     "--rcon-password", "$(cat $CONFIG/rconpw)", \
 | |
|     "--server-id /factorio/config/server-id.json" \
 | |
|     ]
 |