Skip to content

Commit

Permalink
add docker-compose
Browse files Browse the repository at this point in the history
83bytes committed Jul 1, 2024
1 parent fbededb commit a9d523a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: "3.5"
services:
toy_alert_manager:
container_name: toy_alert_manager
image: tam:0.0.1
restart: always
network_mode: host
ulimits:
nproc: 1000000
nofile:
soft: 1000000
hard: 1000000
volumes:
- ./alert-manager-config-2.yml:/alert-manager-config-2.yml
command:
- server
- --config-file
- "./alert-manager-config-2.yml"
- --log-level
- DEBUG

0 comments on commit a9d523a

Please sign in to comment.