mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 00:21:59 +01:00
3af085ab91
Signed-off-by: Janos SUTO <sj@acts.hu>
79 lines
1.7 KiB
YAML
79 lines
1.7 KiB
YAML
version: "3"
|
|
services:
|
|
|
|
mysql:
|
|
image: mariadb:10.6
|
|
container_name: mysql
|
|
restart: unless-stopped
|
|
cap_drop:
|
|
- ALL
|
|
cap_add:
|
|
- dac_override
|
|
- setuid
|
|
- setgid
|
|
environment:
|
|
- MYSQL_DATABASE=piler
|
|
- MYSQL_USER=piler
|
|
- MYSQL_PASSWORD=piler123
|
|
- MYSQL_RANDOM_ROOT_PASSWORD=yes
|
|
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
|
|
healthcheck:
|
|
test: mysql --user=piler --password=piler123 piler --execute "show tables"
|
|
interval: "60s"
|
|
timeout: "5s"
|
|
start_period: "15s"
|
|
retries: 3
|
|
volumes:
|
|
- db_data:/var/lib/mysql
|
|
|
|
memcached:
|
|
container_name: memcached
|
|
image: memcached:latest
|
|
restart: unless-stopped
|
|
cap_drop:
|
|
- ALL
|
|
command: -m 64
|
|
|
|
piler:
|
|
image: sutoj/piler:1.4.4
|
|
container_name: piler
|
|
init: true
|
|
environment:
|
|
- MYSQL_DATABASE=piler
|
|
- MYSQL_USER=piler
|
|
- MYSQL_PASSWORD=piler123
|
|
- MYSQL_HOSTNAME=mysql
|
|
- PILER_HOSTNAME=archive.example.com
|
|
- MEMCACHED_HOST=memcached
|
|
ports:
|
|
- "25:25"
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- piler_etc:/etc/piler
|
|
- piler_var_store:/var/piler/store
|
|
- piler_var_manticore:/var/piler/manticore
|
|
- /dev/log:/dev/log
|
|
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:
|
|
- "memcached"
|
|
- "mysql"
|
|
|
|
volumes:
|
|
db_data: {}
|
|
piler_etc: {}
|
|
piler_var_store: {}
|
|
piler_var_manticore: {}
|