Skip to content

Instantly share code, notes, and snippets.

View domgreen's full-sized avatar
👻
Boo!

Dominic Green domgreen

👻
Boo!
View GitHub Profile
@Wildcarde
Wildcarde / Dockerfile
Last active November 30, 2019 17:34
Unreal Tournament Docker Container Files - Currently this makes a free standing server, a future update will be enable handling launching hubs
FROM centos:6
MAINTAINER Garrett McGrath <gmcgrath815+docker at gmail.com>
RUN yum install -y wget unzip; /usr/bin/wget "<unreal linux source link here>" -O temp.zip; /usr/bin/unzip temp.zip; rm temp.zip
RUN yum install -y Xvfb xorg-X11-server-Xvfb which
RUN chmod +x /LinuxServer/Engine/Binaries/Linux/*
#this is where you SHOULD be able to mount the confs file and have it 'just work' that's not the case however.