Seperate docker tags
This commit is contained in:
parent
adc028370b
commit
f3173314d5
@ -1,7 +1,7 @@
|
|||||||
# Supported tags and respective `Dockerfile` links
|
# Supported tags and respective `Dockerfile` links
|
||||||
|
|
||||||
* `minimal` [(minimal/Dockerfile)](https://github.com/Hackebein/docker-garrysmod/blob/master/minimal/Dockerfile)
|
* `minimal` [(minimal/Dockerfile)](https://github.com/Hackebein/docker-garrysmod/blob/master/minimal/Dockerfile)
|
||||||
* `latest` [(latest/Dockerfile)](https://github.com/Hackebein/docker-garrysmod/blob/master/latest/Dockerfile)
|
* `basic`, `latest` [(latest/Dockerfile)](https://github.com/Hackebein/docker-garrysmod/blob/master/basic/Dockerfile)
|
||||||
* ~~`full` [(full/Dockerfile)](https://github.com/Hackebein/docker-garrysmod/blob/master/full/Dockerfile).~~ coming soon
|
* ~~`full` [(full/Dockerfile)](https://github.com/Hackebein/docker-garrysmod/blob/master/full/Dockerfile).~~ coming soon
|
||||||
|
|
||||||
# What is Garry's Mod?
|
# What is Garry's Mod?
|
||||||
|
15
basic/Dockerfile
Normal file
15
basic/Dockerfile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
FROM hackebein/garrysmod:minimal
|
||||||
|
|
||||||
|
ARG BASEDIR=/opt/garrysmod
|
||||||
|
|
||||||
|
RUN /usr/games/steamcmd \
|
||||||
|
+login anonymous \
|
||||||
|
+force_install_dir $BASEDIR \
|
||||||
|
# cstrike
|
||||||
|
+app_update 232330 -validate -language en \
|
||||||
|
# garrysmod
|
||||||
|
+app_update 4020 -validate -language en \
|
||||||
|
+quit && \
|
||||||
|
rm -rf $BASEDIR/garrysmod/cfg/*
|
||||||
|
|
||||||
|
COPY cfg $BASEDIR/garrysmod/cfg
|
@ -1,15 +1 @@
|
|||||||
FROM hackebein/garrysmod:minimal
|
FROM hackebein/garrysmod:basic
|
||||||
|
|
||||||
ARG BASEDIR=/opt/garrysmod
|
|
||||||
|
|
||||||
RUN /usr/games/steamcmd \
|
|
||||||
+login anonymous \
|
|
||||||
+force_install_dir $BASEDIR \
|
|
||||||
# cstrike
|
|
||||||
+app_update 232330 -validate -language en \
|
|
||||||
# garrysmod
|
|
||||||
+app_update 4020 -validate -language en \
|
|
||||||
+quit && \
|
|
||||||
rm -rf $BASEDIR/garrysmod/cfg/*
|
|
||||||
|
|
||||||
COPY cfg $BASEDIR/garrysmod/cfg
|
|
Loading…
Reference in New Issue
Block a user