Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
/ mtasa-docker Public archive

Unofficial MTA:SA Server Docker Image

License

Notifications You must be signed in to change notification settings

Luminaire1337/mtasa-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Luminaire1337/mtasa-docker

Unofficial MTA:SA Server Docker Image

Installation

Pulling image

# Pull image directly from Docker Hub
docker pull ghcr.io/luminaire1337/mtasa-docker:main

## OR

# Build it yourself
docker build -t ghcr.io/luminaire1337/mtasa-docker:main https://github.com/Luminaire1337/mtasa-docker.git#main

Running image

docker run -it \
	-p 22003:22003/udp \
	-p 22005:22005/tcp \
	-p 22126:22126/udp \
	-d ghcr.io/luminaire1337/mtasa-docker:main

Running image with docker-compose

version: "3"
   
services:
  mtasa:
    image: ghcr.io/luminaire1337/mtasa-docker:main
    container_name: mtasa
    restart: unless-stopped
    volumes:
        - "./config:/src/shared-config"
        - "./modules:/src/shared-modules"
        - "./resources:/src/shared-resources"
        - "./http-cache:/src/shared-http-cache"
    ports:
        - "22003:22003/udp"
        - "22005:22005/tcp"
        - "22126:22126/udp"

License

Docker image ghcr.io/luminaire1337/mtasa-docker is released under MIT License.