mirror of
https://github.com/skylanix/MamieHenriette.git
synced 2026-02-06 23:10:36 +01:00
- Migre vers Alpine Linux avec surveillance Zabbix optionnelle - Configure variables d'environnement pour activation conditionnelle - Met à jour documentation avec instructions Docker complètes
18 lines
491 B
YAML
Executable File
18 lines
491 B
YAML
Executable File
services:
|
|
discord-bot:
|
|
container_name: MamieHenrriette
|
|
build: .
|
|
restart: on-failure
|
|
environment:
|
|
- TOKEN=your token
|
|
- STATUS=online
|
|
- INTERVAL=3600
|
|
- ENABLE_ZABBIX=${ENABLE_ZABBIX:-false}
|
|
- ZABBIX_SERVER=${ZABBIX_SERVER:-zabbix-server.example.com}
|
|
- ZABBIX_HOSTNAME=${ZABBIX_HOSTNAME:-mamie-henrriette-bot}
|
|
volumes:
|
|
- ./statuts.txt:/app/statuts.txt
|
|
ports:
|
|
- "${ZABBIX_PORT:-10050}:10050"
|
|
profiles:
|
|
- default |