Skip to content

All-In-One docker container for CS:GO- and eBot-Server (+ web interface)

License

Notifications You must be signed in to change notification settings

sumonst21/docker-eBot-CSGO

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-eBot-CSGO

All-In-One docker container for CS:GO- and eBot-Server (+ web interface)

Create container with docker-compose

Example docker-compose.yml-file:

ebotmysql:
  image: mysql
  volumes:
   - $DOCKER_DATA/ebot/mysql:/var/lib/mysql
  environment:
    - MYSQL_DATABASE=ebotv3
    - MYSQL_USER=ebotv3
    - MYSQL_PASSWORD=ebotv3
    - MYSQL_ROOT_PASSWORD=ebotv3
ebot:
  build: $DOCKER_IMAGES/ebot/
  security_opt:
    - seccomp:unconfined
  links:
    - "ebotmysql:ebotmysql"
  volumes:
    - ${DOCKER_DATA}/csgo:/home/csgo/strike
  ports:
    - "27015:27015/tcp"
    - "27015:27015/udp"
    - "12360:12360/tcp"
    - "12360:12360/udp"
    - "12361:12361/tcp"
    - "12361:12361/udp"
    - "8081:80"

About

All-In-One docker container for CS:GO- and eBot-Server (+ web interface)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 99.3%
  • Shell 0.7%