mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-07-30 09:01:39 +03:00
[dev] added steamcmd to ecosystem
This commit is contained in:
parent
7f77de08db
commit
daf79c7afe
@ -1,7 +1,7 @@
|
||||
##############################################
|
||||
# 7d2d dedicated server
|
||||
##############################################
|
||||
FROM epicmorg/linux-steamcmd
|
||||
FROM epicmorg/steamcmd:linux
|
||||
LABEL maintainer="Guahos, chipmunkzombie@gmail.com"
|
||||
|
||||
#Steam App ID
|
||||
|
@ -1,4 +1,3 @@
|
||||
version: '3.7'
|
||||
services:
|
||||
7d2d_server:
|
||||
container_name: 7d2d_ds_v1
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM epicmorg/linux-steamcmd
|
||||
FROM epicmorg/steamcmd:linux
|
||||
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
|
@ -1,5 +0,0 @@
|
||||
all: emgcmd
|
||||
emgcmd:
|
||||
docker build --compress -t epicmorg/linux-steamcmd .
|
||||
docker push epicmorg/linux-steamcmd
|
||||
|
44
linux/ecosystem/steamcmd/Makefile
Normal file
44
linux/ecosystem/steamcmd/Makefile
Normal file
@ -0,0 +1,44 @@
|
||||
all: app
|
||||
|
||||
app:
|
||||
make pip
|
||||
make build
|
||||
make deploy
|
||||
make clean
|
||||
|
||||
build:
|
||||
make build-buildah
|
||||
|
||||
deploy:
|
||||
make deploy-buildah
|
||||
|
||||
build-buildah:
|
||||
buildah-wrapper --build --squash
|
||||
|
||||
deploy-buildah:
|
||||
buildah-wrapper --deploy
|
||||
|
||||
build-kaniko:
|
||||
kaniko-wrapper --kaniko-image gcr.io/kaniko-project/executor:debug --dry-run
|
||||
|
||||
deploy-kaniko:
|
||||
kaniko-wrapper --deploy --kaniko-image gcr.io/kaniko-project/executor:debug
|
||||
|
||||
build-compose:
|
||||
docker-compose build --compress --parallel --progress plain
|
||||
|
||||
deploy-compose:
|
||||
docker-compose push
|
||||
|
||||
clean:
|
||||
docker container prune -f
|
||||
docker image prune -f
|
||||
docker network prune -f
|
||||
docker volume prune -f
|
||||
docker system prune -af
|
||||
buildah rm -a
|
||||
buildah rmi -a
|
||||
|
||||
pip:
|
||||
pip3 install --break-system-packages --no-cache-dir kaniko-wrapper buildah-wrapper
|
||||
pip install --break-system-packages --no-cache-dir kaniko-wrapper buildah-wrapper
|
5
linux/ecosystem/steamcmd/docker-compose.yml
Normal file
5
linux/ecosystem/steamcmd/docker-compose.yml
Normal file
@ -0,0 +1,5 @@
|
||||
services:
|
||||
app:
|
||||
image: "epicmorg/steamcmd:linux"
|
||||
build:
|
||||
context: .
|
Loading…
x
Reference in New Issue
Block a user