We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe8a045 commit a2c7b2eCopy full SHA for a2c7b2e
2 files changed
rootfs/Dockerfile.test
@@ -27,7 +27,6 @@ RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >>/etc/apk/repositor
27
su-exec \
28
bash \
29
shadow \
30
- nsq \
31
postgresql \
32
redis \
33
&& mkdir -p /run/postgresql $PGDATA \
rootfs/bin/test-unit
@@ -6,12 +6,6 @@
6
# fail hard and fast even on pipelines
7
set -eou pipefail
8
9
-function start_nsq() {
10
- cd /tmp
11
- nohup nsqd > /var/log/nsqd.log 2>&1 &
12
- cd -
13
-}
14
-
15
function start_redis() {
16
cd /tmp
17
nohup redis-server > /var/log/redis.log 2>&1 &
@@ -25,7 +19,6 @@ function start_celery() {
25
19
}
26
20
21
su-exec postgres pg_ctl -D "$PGDATA" start
-start_nsq
22
start_redis
23
start_celery
24
python3 manage.py check
0 commit comments