You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
407 B
18 lines
407 B
version: "3.2"
|
|
|
|
services:
|
|
fail2ban:
|
|
image: crazymax/fail2ban:${F2B_TAG:-latest}
|
|
container_name: ${F2B_CONTAINER_NAME:-fail2ban}
|
|
restart: ${SRV_RESTART:-unless-stopped}
|
|
network_mode: "host"
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- NET_RAW
|
|
volumes:
|
|
- ${LOCAL_STACK_DIR}/data:/data
|
|
- /var/log:/var/log:ro
|
|
env_file:
|
|
- "./fail2ban.env"
|
|
environment:
|
|
- TZ=${TZ}
|
|
|