2020-11-25 17:10:40 +03:00
|
|
|
## Testrail
|
|
|
|
|
2023-07-24 20:43:08 +03:00
|
|
|
* Based on `websites:php7.0` of our ecosystem.
|
2020-11-25 17:10:40 +03:00
|
|
|
|
|
|
|
# Compose example
|
|
|
|
|
|
|
|
```yml
|
|
|
|
version: '3.7'
|
|
|
|
services:
|
|
|
|
testrail:
|
2023-07-24 20:43:08 +03:00
|
|
|
image: epicmorg/testrail-ad-:5.5.0.3727
|
2020-11-25 17:10:40 +03:00
|
|
|
# depends_on:
|
|
|
|
# - mysql
|
|
|
|
# - memcached
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- /etc/localtime:/etc/localtime
|
|
|
|
- /etc/timezone:/etc/timezone
|
|
|
|
# - /etc/letsencrypt:/etc/letsencrypt
|
|
|
|
- www:/var/www
|
|
|
|
- apache2:/etc/apache2
|
|
|
|
- php:/etc/php
|
|
|
|
restart: unless-stopped
|
|
|
|
# extra_hosts:
|
|
|
|
# - "example.com:192.168.0.11"
|
|
|
|
tmpfs:
|
|
|
|
- /tmp
|
|
|
|
- /var/lib/php/sessions
|
|
|
|
volumes:
|
|
|
|
www:
|
|
|
|
external: true
|
|
|
|
apache2:
|
|
|
|
external: true
|
|
|
|
php:
|
|
|
|
external: true
|
|
|
|
```
|