2023-08-28 18:25:32 +00:00
|
|
|
version: '3'
|
2024-06-15 15:59:53 +00:00
|
|
|
|
2023-08-28 18:25:32 +00:00
|
|
|
services:
|
2024-06-15 15:59:53 +00:00
|
|
|
|
|
|
|
bot:
|
|
|
|
image: jeancloud/mutubot:1
|
|
|
|
restart: unless-stopped
|
|
|
|
env_file:
|
|
|
|
- $DATA_DIR/.env
|
|
|
|
environment:
|
|
|
|
TZ: Europe/Paris
|
2023-08-28 18:25:32 +00:00
|
|
|
volumes:
|
2024-06-15 15:59:53 +00:00
|
|
|
- $DATA_DIR/guilds.yml:/usr/src/app/guilds.yml
|
2023-08-28 18:25:32 +00:00
|
|
|
networks:
|
|
|
|
default:
|
2024-01-02 16:50:14 +00:00
|
|
|
ipv4_address: $NET.100
|
2023-08-28 18:25:32 +00:00
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
limits:
|
|
|
|
cpus: '0.50'
|
|
|
|
memory: 100M
|
2024-06-15 15:59:53 +00:00
|
|
|
|
2023-08-28 18:25:32 +00:00
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
ipam:
|
|
|
|
config:
|
2024-01-02 16:50:14 +00:00
|
|
|
- subnet: $NET.0/24
|
2024-06-15 15:59:53 +00:00
|
|
|
|