Skip to content

Commit

Permalink
fix quay.io repo path
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerome Küttner committed Dec 7, 2019
1 parent 7c3f2dd commit 5e1ab3c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ alternatively you can run the docker-images manually:
# master-server
docker run \
-d --net=host \
docker-gameserver/bfbc2-master-server
quay.io/docker-gameserver/bfbc2-master-server

# game-server
docker run \
-d --net=host \
docker-gameserver/bfbc2-server
quay.io/docker-gameserver/bfbc2-server
```

## Connecting to your LAN-Server
Expand All @@ -52,7 +52,7 @@ mkdir ./database
docker run \
-d --net=host \
-v "./database:/home/bfbc2/database" \
docker-gameserver/bfbc2-master-server
quay.io/docker-gameserver/bfbc2-master-server
```

You can overwrite the [config.ini](./master-server/config.ini) with your own by adding a custom `config.ini` as volume:
Expand All @@ -62,7 +62,7 @@ docker run \
--rm -ti --host=net \
-v ./database:/home/bfbc2/database \
-v ./config.ini:/home/bfbc2/config.ini \
docker-gameserver/bfbc2-master-server
quay.io/docker-gameserver/bfbc2-master-server
```

or edit the [docker-compose.yaml](./docker-compose.yaml) and uncomment the `- "./custom-config.ini:/home/bfbc2/config.ini"` line.
Expand Down Expand Up @@ -97,7 +97,7 @@ The default [maplists](./maplists) can be overwritten by mounting your own mapli
docker run \
--rm -ti \
-v "./custom_rushmaplist.txt:/home/bfbc2/server/maplists/rush.txt" \
docker-gameserver/bfbc2-server
quay.io/docker-gameserver/bfbc2-server
```

# Build
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ version: "3"
services:

bfbc2-master-server:
image: docker-gameserver/bfbc2-master-server
image: quay.io/docker-gameserver/bfbc2-master-server
# build: ./master-server
network_mode: "host"
volumes:
- "./database:/home/bfbc2/database"
# - "./custom-config.ini:/home/bfbc2/config.ini"

bfbc2-server:
image: docker-gameserver/bfbc2-server
image: quay.io/docker-gameserver/bfbc2-server
# build: ./game-server
network_mode: "host"
environment:
Expand Down

0 comments on commit 5e1ab3c

Please sign in to comment.