Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BombSquad Server Docker Container
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
BombSquad Server Docker Container
Commits
e8d01f17
Commit
e8d01f17
authored
5 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Add BombSquad config, CI config, fix Dockerfile.
parent
9956a9ce
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+14
-0
14 additions, 0 deletions
.gitlab-ci.yml
Dockerfile
+14
-4
14 additions, 4 deletions
Dockerfile
config.py
+22
-0
22 additions, 0 deletions
config.py
with
50 additions
and
4 deletions
.gitlab-ci.yml
0 → 100644
+
14
−
0
View file @
e8d01f17
build_image
:
stage
:
build
image
:
name
:
gcr.io/kaniko-project/executor:debug
entrypoint
:
[
"
"
]
variables
:
IMAGE_TAG
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
script
:
-
echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"nah\"}}}"
-
echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
-
/kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
only
:
-
tags
This diff is collapsed.
Click to expand it.
Dockerfile
+
14
−
4
View file @
e8d01f17
FROM
python:2.7-stretch
COPY
./bombsquad/ /bombsquad
ENV
BS_VERSION 1.4.150
ENV
BS_MIRROR https://ant.sr
WORKDIR
/bombsquad
CMD
/bombsquad/bombsquad_server
EXPOSE
43210/tcp
RUN
wget
-O
BombSquad_Server_Linux_64bit_
$BS_VERSION
.tar.gz
$BS_MIRROR
/BombSquad_Server_Linux_64bit_
$BS_VERSION
.tar.gz
\
&&
tar
xzf BombSquad_Server_Linux_64bit_
$BS_VERSION
.tar.gz
\
&&
rm
BombSquad_Server_Linux_64bit_
$BS_VERSION
.tar.gz
COPY
./config.py /bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/config.py
COPY
./bsTeamGame.py /bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/data/scripts/bsTeamGame.py
COPY
./bsGame.py /bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/data/scripts/bsGame.py
COPY
./bsBomb.py /bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/data/scripts/bsBomb.py
COPY
./bsSpaz.py /bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/data/scripts/bsSpaz.py
CMD
/bombsquad/BombSquad_Server_Linux_64bit_$BS_VERSION/bombsquad_server
EXPOSE
43212/udp
This diff is collapsed.
Click to expand it.
config.py
0 → 100644
+
22
−
0
View file @
e8d01f17
config
[
'
partyName
'
]
=
os
.
getenv
(
'
BS_SERVER_NAME
'
,
'
Boomsicle
'
)
config
[
'
maxPartySize
'
]
=
int
(
os
.
getenv
(
'
BS_MAX_CONNECTIONS
'
,
32
))
config
[
'
Free-for-All Max Players
'
]
=
int
(
os
.
getenv
(
'
BS_FFA_MAX_PLAYERS
'
,
32
))
config
[
'
port
'
]
=
int
(
os
.
getenv
(
'
BS_PORT
'
,
43210
))
config
[
'
partyIsPublic
'
]
=
bool
(
os
.
getenv
(
'
BS_PUBLIC
'
,
True
))
config
[
'
language
'
]
=
os
.
getenv
(
'
BS_LANGUAGE
'
,
'
English
'
)
config
[
'
sessionType
'
]
=
os
.
getenv
(
'
BS_SESSIONTYPE
'
,
'
ffa
'
)
config
[
'
playlistCode
'
]
=
os
.
getenv
(
'
BS_PLAYLIST
'
,
None
)
config
[
'
playlistShuffle
'
]
=
bool
(
os
.
getenv
(
'
BS_SHUFFLE
'
,
True
))
config
[
'
autoBalanceTeams
'
]
=
bool
(
os
.
getenv
(
'
BS_BALANCETEAMS
'
,
True
))
config
[
'
enableTelnet
'
]
=
bool
(
os
.
getenv
(
'
BS_TELNET
'
,
False
))
config
[
'
telnetPort
'
]
=
int
(
os
.
getenv
(
'
BS_TELNETPORT
'
,
43250
))
config
[
'
telnetPassword
'
]
=
os
.
getenv
(
'
BS_TELNETPW
'
,
'
changeme
'
)
config
[
'
teamsSeriesLength
'
]
=
int
(
os
.
getenv
(
'
BS_SERIESLENGTH
'
,
7
))
config
[
'
ffaSeriesScoreToWin
'
]
=
int
(
os
.
getenv
(
'
BS_FFASCORE
'
,
69
))
config
[
'
statsURL
'
]
=
os
.
getenv
(
'
BS_STATSURL
'
,
''
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment