Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile - github.com/bestpractical/rt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71c366656bb2c20fa9cafac3b61fa1961aa0c388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This Dockerfile is for testing only.

FROM bpssysadmin/rt-base-debian:RT-5.0.3-buster-20220721

ENV RT_TEST_PARALLEL 1
ENV RT_TEST_DEVEL 1
ENV RT_DBA_USER root
ENV RT_DBA_PASSWORD password
ENV RT_TEST_DB_HOST=172.17.0.2
ENV RT_TEST_RT_HOST=172.17.0.3

# Add the rt_test user (required by mod_fcgid tests)
RUN adduser --disabled-password --gecos "" rt-user

CMD tail -f /dev/null