1
0
Fork 0
mirror of synced 2024-06-27 18:50:47 +12:00
appwrite/docker-compose.yml

81 lines
1.8 KiB
YAML
Raw Normal View History

2019-05-09 18:54:39 +12:00
version: '3'
services:
appwrite:
build: .
restart: unless-stopped
volumes:
- ./app:/usr/share/nginx/html/app
- ./public:/usr/share/nginx/html/public
- ./src:/usr/share/nginx/html/src
- ./vendor:/usr/share/nginx/html/vendor
2019-05-09 18:54:39 +12:00
- ./docker/nginx.conf:/etc/nginx/nginx.conf:rw
2019-09-28 02:03:42 +12:00
- ./storage/uploads:/storage/uploads:rw
- ./storage/cache:/storage/cache:rw
2019-05-09 18:54:39 +12:00
ports:
- "80:80"
- "443:443"
2019-09-03 23:05:33 +12:00
depends_on:
2019-09-28 21:27:21 +12:00
- mariadb
- redis
- smtp
- clamav
- influxdb
- telegraf
2019-05-09 18:54:39 +12:00
environment:
- _APP_ENV=development
2019-09-04 00:08:32 +12:00
- _APP_OPENSSL_KEY_V1=your-secret-key
2019-05-09 18:54:39 +12:00
- _APP_REDIS_HOST=redis
- _APP_REDIS_PORT=6379
- _APP_DB_HOST=mariadb
- _APP_DB_PORT=3306
2019-05-24 17:56:23 +12:00
- _APP_DB_SCHEMA=appwrite
2019-09-27 09:44:19 +12:00
- _APP_DB_USER=user
2019-09-28 01:30:58 +12:00
- _APP_DB_PASS=password
2019-08-07 08:22:20 +12:00
- _APP_INFLUXDB_HOST=influxdb
- _APP_INFLUXDB_PORT=8086
2019-08-07 20:57:12 +12:00
- _APP_STATSD_HOST=telegraf
- _APP_STATSD_PORT=8125
2019-09-16 04:50:57 +12:00
2019-05-09 18:54:39 +12:00
mariadb:
2019-08-01 01:04:08 +12:00
image: appwrite/mariadb:1.0.0 # fix issues when upgrading using: mysql_upgrade -u root -p
2019-05-09 18:54:39 +12:00
restart: unless-stopped
environment:
2019-09-28 01:30:58 +12:00
- MYSQL_ROOT_PASSWORD=rootsecretpassword
2019-09-28 03:12:26 +12:00
- MYSQL_DATABASE=appwrite
2019-09-27 09:44:19 +12:00
- MYSQL_USER=user
2019-09-28 01:30:58 +12:00
- MYSQL_PASSWORD=password
2019-05-09 18:54:39 +12:00
volumes:
2019-09-27 09:44:19 +12:00
- ./storage/db:/var/lib/mysql:rw
2019-05-09 18:54:39 +12:00
ports:
- 3306:3306/tcp
2019-08-09 09:49:46 +12:00
smtp:
image: appwrite/smtp:1.0.0
environment:
- MAILNAME=appwrite
- RELAY_NETWORKS=:192.168.0.0/24:10.0.0.0/16
ports:
- "25:25"
2019-05-09 18:54:39 +12:00
clamav:
2019-08-07 16:36:51 +12:00
image: appwrite/clamav:1.0.4
2019-08-07 19:02:12 +12:00
restart: unless-stopped
2019-08-15 01:50:40 +12:00
volumes:
- ./storage:/storage:rw
2019-08-09 09:49:46 +12:00
redis:
image: redis:5.0
restart: unless-stopped
2019-08-07 19:02:12 +12:00
influxdb:
image: influxdb:1.6
volumes:
2019-08-09 09:49:46 +12:00
- ./storage/influxdb:/var/lib/influxdb
2019-08-07 19:02:12 +12:00
ports:
2019-08-09 09:49:46 +12:00
- "8086:8086"
2019-08-07 19:02:12 +12:00
telegraf:
image: appwrite/telegraf:1.0.0
ports:
2019-08-09 09:49:46 +12:00
- "8125:8125/udp"