23 lines
454 B
YAML
23 lines
454 B
YAML
services:
|
|
email-to-discord:
|
|
build:
|
|
context: .
|
|
target: runtime
|
|
container_name: email-to-discord-monitor
|
|
restart: unless-stopped
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
env_file:
|
|
- .env
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 256M
|
|
reservations:
|
|
memory: 128M
|