This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-04-23 15:02:42 +02:00
|
|
|
version: '2.4'
|
2021-04-23 14:57:04 +02:00
|
|
|
|
|
|
|
services:
|
|
|
|
app:
|
2021-05-01 00:04:46 +02:00
|
|
|
image: 'monica:2.22.0-apache'
|
2021-04-23 14:57:04 +02:00
|
|
|
restart: 'always'
|
|
|
|
|
|
|
|
healthcheck:
|
2021-04-23 22:41:03 +02:00
|
|
|
test: 'curl -f localhost:80 || exit 1'
|
2021-04-23 14:57:04 +02:00
|
|
|
interval: '1m'
|
|
|
|
timeout: '10s'
|
|
|
|
retries: 3
|
|
|
|
start_period: '10s'
|
|
|
|
depends_on:
|
|
|
|
db:
|
|
|
|
condition: 'service_started'
|
|
|
|
redis:
|
|
|
|
condition: 'service_healthy'
|
|
|
|
|
|
|
|
env_file:
|
|
|
|
- '.env'
|
|
|
|
networks:
|
|
|
|
- 'default'
|
|
|
|
- 'nginx'
|
|
|
|
volumes:
|
|
|
|
- 'data:/var/www/html/storage'
|
|
|
|
|
|
|
|
db:
|
2021-05-25 03:00:58 +02:00
|
|
|
image: 'mariadb:10.6.1-focal'
|
2021-04-23 14:57:04 +02:00
|
|
|
restart: 'always'
|
|
|
|
command: '--default-authentication-plugin=mysql_native_password'
|
|
|
|
|
|
|
|
environment:
|
|
|
|
- 'MYSQL_RANDOM_ROOT_PASSWORD=true'
|
|
|
|
- 'MYSQL_DATABASE=monica'
|
|
|
|
- 'MYSQL_USER=monica'
|
|
|
|
- 'MYSQL_PASSWORD=monica'
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
- 'db-data:/var/lib/mysql'
|
|
|
|
|
|
|
|
redis:
|
2021-05-04 01:00:38 +02:00
|
|
|
image: 'redis:6.2.3-alpine'
|
2021-04-23 14:57:04 +02:00
|
|
|
restart: 'always'
|
|
|
|
|
|
|
|
healthcheck:
|
|
|
|
test: 'redis-cli -h localhost ping'
|
|
|
|
interval: '10s'
|
|
|
|
timeout: '5s'
|
|
|
|
retries: 3
|
|
|
|
|
|
|
|
networks:
|
|
|
|
nginx:
|
|
|
|
external: true
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
data:
|
|
|
|
db-data:
|