25 lines
431 B
YAML
25 lines
431 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
email-to-discord:
|
|
build: .
|
|
container_name: email-to-discord-monitor
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
|
|
# ログの設定
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
|
|
# リソース制限
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 256M
|
|
reservations:
|
|
memory: 128M
|