Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Feat: docker-compose example (#30)
Browse files Browse the repository at this point in the history
* Readme update example

fixed volume mapping in docker run example.

* Feat: Added docker-compose example

Added an docker-compose.yaml example that matches the docker run example from PR #28 with 1:1 functionality.
  • Loading branch information
BBBosp authored Mar 24, 2021
1 parent 3e0a66c commit f642c74
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
services:
linuxgsm:
image: gameservermanagers/linuxgsm-docker
container_name: lgsm-docker
hostname: 'LGSM'
network_mode: host
volumes:
- '/path/to/lgsm:/home/linuxgsm'
restart: always

0 comments on commit f642c74

Please sign in to comment.