Skip to content

Commit 0253174

Browse files
committed
qdns: ask for help
1 parent c5a06db commit 0253174

File tree

4 files changed

+49
-0
lines changed

4 files changed

+49
-0
lines changed

Diff for: .gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "stealth"]
2+
path = stealth
3+
url = https://github.com/stealth/libusipp

Diff for: Dockerfile

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
FROM alpine:latest
2+
3+
MAINTAINER United Nations
4+
5+
RUN apk update && \
6+
apk add --no-cache \
7+
autoconf \
8+
g++ \
9+
make
10+
11+
WORKDIR /app
12+
13+
COPY ./* ./
14+
15+
WORKDIR /app/stealth/src
16+
17+
RUN autoconf
18+
19+
RUN ./configure
20+
21+
RUN make
22+
23+
RUN make install
24+
25+
WORKDIR /app
26+
27+
RUN make
28+
29+
CMD ["./qdns", "-h"]
30+
31+
MAINTAINER B

Diff for: docker-compose.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: '3.9'
2+
3+
services:
4+
vtx:
5+
image: ghcr.io/0-5788719150923125/qdns:1
6+
restart: 'always'
7+
user: 1000:1000
8+
ulimits:
9+
memlock: -1
10+
stack: 67108864
11+
build:
12+
context: .
13+
dockerfile: Dockerfile
14+
shm_size: '1gb'

Diff for: stealth

Submodule stealth added at 0199adf

0 commit comments

Comments
 (0)