docker-scripts/linux/ecosystem/testrail/5.5.1.3746/main
2024-02-09 13:51:53 +03:00
..
.env testrail php70 fix 2023-07-25 00:49:27 +03:00
apache_testrail.conf ansible image generator (wip) + new apache2 and php 2023-07-24 20:43:12 +03:00
docker-compose.yml yml compose version update 2024-02-09 13:51:53 +03:00
docker-entrypoint.sh ansible image generator (wip) + new apache2 and php 2023-07-24 20:43:12 +03:00
Dockerfile image fix 2023-07-25 21:55:42 +03:00
Makefile ansible image generator (wip) + new apache2 and php 2023-07-24 20:43:12 +03:00
README.md ansible image generator (wip) + new apache2 and php 2023-07-24 20:43:12 +03:00

Testrail

  • Based on websites:php7.0 of our ecosystem.

Compose example

version: '3.7'
services:
  testrail:
    image: epicmorg/testrail:5.5.1.3746
#    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