add botamusique
This commit is contained in:
parent
6c087a4d68
commit
15798d9173
2 changed files with 17 additions and 14 deletions
|
@ -7,4 +7,5 @@ Mainly to have a version of the mumble server thats newer than the one from the
|
|||
1. Create `data` directory next to the `docker-compose.yml`
|
||||
2. Copy the example config file into the newly created `data` directory
|
||||
3. Adjust the config to your liking
|
||||
4. `docker compose up -d --build`
|
||||
4. `docker compose up -d --build`
|
||||
5. Create `botamusique` directory inside `data` and add config and db for botamusique
|
|
@ -14,16 +14,18 @@ services:
|
|||
mem_limit: 256m
|
||||
memswap_limit: 0
|
||||
|
||||
# botamusique:
|
||||
# # image: docker.pkg.github.com/flipdot/mumble-docker/botamusique:latest
|
||||
# build: plugins/botamusique-docker/.
|
||||
# volumes:
|
||||
# - ./data/botamusique:/data/
|
||||
# depends_on:
|
||||
# - mumble
|
||||
# restart: unless-stopped
|
||||
# # resources
|
||||
# cpus: 1
|
||||
# oom_score_adj: 100 # kill this thing first
|
||||
# mem_limit: 256m
|
||||
# memswap_limit: 0
|
||||
botamusique:
|
||||
image: azlux/botamusique
|
||||
environment:
|
||||
BAM_CONFIG_file: /data/configuration.ini
|
||||
BAM_DB: /data/database.db
|
||||
volumes:
|
||||
- ./data/botamusique:/data/
|
||||
depends_on:
|
||||
- mumble
|
||||
restart: unless-stopped
|
||||
# resources
|
||||
cpus: 1
|
||||
oom_score_adj: 100 # kill this thing first
|
||||
mem_limit: 256m
|
||||
memswap_limit: 0
|
||||
|
|
Loading…
Reference in a new issue