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`
|
1. Create `data` directory next to the `docker-compose.yml`
|
||||||
2. Copy the example config file into the newly created `data` directory
|
2. Copy the example config file into the newly created `data` directory
|
||||||
3. Adjust the config to your liking
|
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
|
mem_limit: 256m
|
||||||
memswap_limit: 0
|
memswap_limit: 0
|
||||||
|
|
||||||
# botamusique:
|
botamusique:
|
||||||
# # image: docker.pkg.github.com/flipdot/mumble-docker/botamusique:latest
|
image: azlux/botamusique
|
||||||
# build: plugins/botamusique-docker/.
|
environment:
|
||||||
# volumes:
|
BAM_CONFIG_file: /data/configuration.ini
|
||||||
# - ./data/botamusique:/data/
|
BAM_DB: /data/database.db
|
||||||
# depends_on:
|
volumes:
|
||||||
# - mumble
|
- ./data/botamusique:/data/
|
||||||
# restart: unless-stopped
|
depends_on:
|
||||||
# # resources
|
- mumble
|
||||||
# cpus: 1
|
restart: unless-stopped
|
||||||
# oom_score_adj: 100 # kill this thing first
|
# resources
|
||||||
# mem_limit: 256m
|
cpus: 1
|
||||||
# memswap_limit: 0
|
oom_score_adj: 100 # kill this thing first
|
||||||
|
mem_limit: 256m
|
||||||
|
memswap_limit: 0
|
||||||
|
|
Loading…
Reference in a new issue