piler-docker/config/piler-default.yml

100 lines
2.3 KiB
YAML
Raw Normal View History

2022-03-08 11:02:21 +00:00
services:
mysql:
2023-01-22 20:29:57 +00:00
image: mariadb:${MARIA_DB_VERSION}
2024-06-11 19:36:39 +00:00
container_name: mysql_piler
2022-03-08 11:02:21 +00:00
restart: unless-stopped
2024-06-13 11:10:48 +00:00
networks:
- pilernet
2022-03-08 11:02:21 +00:00
cap_drop:
- ALL
cap_add:
- dac_override
- setuid
- setgid
environment:
- MYSQL_DATABASE=${MYSQL_DATABASE}
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
- MYSQL_RANDOM_ROOT_PASSWORD=yes
2022-04-20 10:35:35 +00:00
- TZ="Europe/Berlin"
2024-06-13 14:44:24 +00:00
- MARIADB_AUTO_UPGRADE=1
2024-06-13 14:45:20 +00:00
- MARIADB_DISABLE_UPGRADE_BACKUP=1
2022-03-08 11:02:21 +00:00
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
healthcheck:
test: mysql --user=${MYSQL_USER} --password=${MYSQL_PASSWORD} piler --execute "show tables"
interval: "60s"
timeout: "5s"
start_period: "15s"
retries: 3
volumes:
- db_data:/var/lib/mysql
memcached:
image: memcached:latest
2024-06-11 19:36:39 +00:00
container_name: memcached_piler
2022-03-08 11:02:21 +00:00
restart: unless-stopped
2024-06-13 11:10:48 +00:00
networks:
- pilernet
2024-06-02 21:30:25 +00:00
cap_drop:
- ALL
2022-03-08 11:02:21 +00:00
command: -m 64
piler:
2023-01-22 19:02:53 +00:00
image: simatec/piler:${PILER_VERSION}
2022-03-08 11:02:21 +00:00
container_name: piler
restart: unless-stopped
2024-06-13 11:10:48 +00:00
networks:
- pilernet
2022-03-08 11:02:21 +00:00
hostname: ${PILER_DOMAIN}
init: true
environment:
2024-06-02 18:45:44 +00:00
- MEMCACHED_HOSTNAME=memcached
2022-03-08 11:02:21 +00:00
- MYSQL_DATABASE=${MYSQL_DATABASE}
- MYSQL_USER=${MYSQL_USER}
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
2024-06-11 20:16:58 +00:00
- MYSQL_HOSTNAME=mysql_piler
2022-03-08 11:02:21 +00:00
- PILER_HOSTNAME=${PILER_DOMAIN}
2024-06-11 20:16:58 +00:00
- MEMCACHED_HOST=memcached_piler
2023-01-15 22:13:05 +00:00
- TZ=${TIME_ZONE}
2024-06-04 08:26:31 +00:00
- RT=1
2022-03-08 11:02:21 +00:00
ports:
- "25:25"
2022-03-09 13:28:14 +00:00
- "80:80"
- "443:443"
2022-03-08 11:02:21 +00:00
volumes:
- piler_etc:/etc/piler
2023-01-15 22:13:05 +00:00
- piler_var_store:/var/piler/store
- piler_var_manticore:/var/piler/manticore
- piler_var_imap:/var/piler/imap
- piler_var_stat:/var/piler/stat
2022-04-20 10:35:35 +00:00
- piler_cron:/var/spool/cron/crontabs
- /etc/localtime:/etc/localtime:ro
2022-03-08 11:02:21 +00:00
healthcheck:
test: curl -s smtp://localhost/
interval: "60s"
timeout: "3s"
start_period: "15s"
retries: 3
deploy:
resources:
reservations:
memory: 512M
limits:
memory: 512M
depends_on:
2024-06-13 11:10:48 +00:00
- memcached
- mysql
networks:
pilernet:
external: true
2022-03-08 11:02:21 +00:00
volumes:
2022-12-20 10:56:19 +00:00
db_data:
piler_etc:
2023-01-15 22:13:05 +00:00
piler_var_store:
piler_var_manticore:
piler_var_imap:
piler_var_stat:
2022-12-20 10:56:19 +00:00
piler_cron: