[dev] added steamcmd to ecosystem

This commit is contained in:
STAM 2025-07-29 17:32:08 +03:00
parent 7f77de08db
commit daf79c7afe
No known key found for this signature in database
GPG Key ID: 711526C6938897F1
8 changed files with 51 additions and 8 deletions

View File

@ -1,7 +1,7 @@
##############################################
# 7d2d dedicated server
##############################################
FROM epicmorg/linux-steamcmd
FROM epicmorg/steamcmd:linux
LABEL maintainer="Guahos, chipmunkzombie@gmail.com"
#Steam App ID

View File

@ -1,4 +1,3 @@
version: '3.7'
services:
7d2d_server:
container_name: 7d2d_ds_v1

View File

@ -1,4 +1,4 @@
FROM epicmorg/linux-steamcmd
FROM epicmorg/steamcmd:linux
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
ARG DEBIAN_FRONTEND=noninteractive

View File

@ -1,5 +0,0 @@
all: emgcmd
emgcmd:
docker build --compress -t epicmorg/linux-steamcmd .
docker push epicmorg/linux-steamcmd

View 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

View File

@ -0,0 +1,5 @@
services:
app:
image: "epicmorg/steamcmd:linux"
build:
context: .