mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 16:01:01 +00:00
20 lines
419 B
YAML
20 lines
419 B
YAML
services:
|
|
fail2ban:
|
|
image: "linuxserver/fail2ban:1.1.0"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
network_mode: host
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- NET_RAW
|
|
volumes:
|
|
- "${CONFIG_PATH}:/config"
|
|
- "${HOST_LOG_PATH}:/var/log:ro"
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TIME_ZONE}
|
|
- VERBOSITY=${VERBOSITY}
|
|
labels:
|
|
createdBy: "Apps"
|