mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 22:55:44 +03:00
STAM
511a8a115a
update requirements.txt github actions runs-on: ubuntu-24.04 make pip fix - failsafe - systemwide zabbix 7 + zabbix fixes cleanup ci wip: fixes, nginx update, support update wip: bookworm 12 base updates wip: requirements.txt cleanup zabbix USER fix WIP: debian 12 develop improvements |
||
---|---|---|
.. | ||
5.4.1.3669 | ||
5.5.0.3727 | ||
5.5.0.3731 | ||
5.5.0.3735 | ||
5.5.1.3746 | ||
5.6.0.3853 | ||
5.6.0.3856 | ||
5.6.0.3861 | ||
5.6.0.3862 | ||
5.6.0.3865 | ||
5.7.0.3938 | ||
5.7.0.3942 | ||
5.7.0.3951 | ||
5.7.1.4026 | ||
5.7.1.4028 | ||
6.0.0.4140 | ||
6.0.1.4163 | ||
6.1.0.4367 | ||
6.1.0.4369 | ||
6.1.1.1020 | ||
6.1.1.1021 | ||
6.2.0.1085 | ||
6.2.1.1003 | ||
6.2.1.1005 | ||
6.2.2.1107 | ||
6.2.3.1114 | ||
6.3.0.1120 | ||
6.3.1.1004 | ||
6.3.1.1006 | ||
6.4.0.1284 | ||
6.4.0.1293 | ||
6.5.0.1298 | ||
6.5.1.1002 | ||
6.5.3.1001 | ||
6.5.4.1002 | ||
6.5.4.1007 | ||
6.5.5.1009 | ||
6.5.6.1014 | ||
6.5.7.1000 | ||
6.6.0.1156 | ||
6.6.1.1166 | ||
6.7.1.1020 | ||
6.7.2.1037 | ||
6.7.2.1043 | ||
7.0.0.1057 | ||
7.0.1.1002 | ||
7.0.1.1013 | ||
7.0.2.1014 | ||
7.0.2.1015 | ||
7.0.2.1016 | ||
7.4.1.8079 | ||
7.4.1.8091 | ||
7.4.1.8092 | ||
7.5.1.7010 | ||
7.5.1.7012 | ||
7.5.1.7013 | ||
7.5.2.1002 | ||
7.5.3.1000 | ||
8.0.0.1089 | ||
8.0.1.1029 | ||
README.md |
Testrail
Compose example
testrail-latest-core:
container_name: testrail-latest-core
hostname: testrail-latest-core
image: epicmorg/testrail:latest
restart: always
ports:
- "80:80"
volumes:
- /mnt/lvm/apps/testrail-latest/core/custom/auth/auth.php:/var/www/testrail/custom/auth/auth.php:ro
- /mnt/lvm/apps/testrail-latest/core/attachments:/opt/testrail/attachments
- /mnt/lvm/apps/testrail-latest/core/audit:/opt/testrail/audit
- /mnt/lvm/apps/testrail-latest/core/logs:/opt/testrail/logs
- /mnt/lvm/apps/testrail-latest/core/reports:/opt/testrail/reports
- /mnt/lvm/apps/testrail-latest/core/www/config:/var/www/testrail/config
depends_on:
- testrail-latest-mysql
- testrail-latest-rabbitmq
- testrail-latest-cassandra
environment:
- TR_DEFAULT_TASK_EXECUTION=5
testrail-latest-mysql:
container_name: testrail-latest-mysql
hostname: testrail-latest-mysql
image: mysql:8
ports:
- "3306:3306"
volumes:
- /mnt/lvm/apps/testrail-latest/mysql8.0/etc/mysql/my.cnf:/etc/mysql/my.cnf
- /mnt/lvm/apps/testrail-latest/mysql8.0/var/lib/mysql:/var/lib/mysql
- /mnt/lvm/apps/testrail-latest/mysql8.0/var/lib/mysql-files:/var/lib/mysql-files
- /mnt/lvm/apps/testrail-latest/mysql8.0/var/log/mysql:/var/log/mysql
restart: always
environment:
INIT_TOKUDB: 1
MYSQL_ROOT_PASSWORD: password
testrail-latest-cassandra:
container_name: testrail-latest-cassandra
hostname: cassandra
image: epicmorg/cassandra:3.11
ulimits:
memlock: -1
nproc: 1048575
nofile: 100000
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
- /mnt/lvm/apps/testrail-latest/cassandra/bitnami:/bitnami
environment:
- CASSANDRA_SEEDS=user
- CASSANDRA_PASSWORD_SEEDER=yes
- CASSANDRA_PASSWORD=password
restart: always
testrail-latest-rabbitmq:
image: rabbitmq:3-management
container_name: testrail-latest-rabbitmq
hostname: testrail-latest-rabbitmq
ports:
- 15671:15671
- 15672:15672
restart: always
environment:
- RABBITMQ_DEFAULT_USER=testrail
- RABBITMQ_DEFAULT_PASS=testrail
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
- /mnt/lvm/apps/testrail-latest/rabbitmq:/var/lib/rabbitmq