Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stealth/qdns
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: 0-5788719150923125/qdns
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Feb 3, 2023

  1. qdns: ask for help

    Vectorrent committed Feb 3, 2023
    Copy the full SHA
    0253174 View commit details
Showing with 49 additions and 0 deletions.
  1. +3 −0 .gitmodules
  2. +31 −0 Dockerfile
  3. +14 −0 docker-compose.yml
  4. +1 −0 stealth
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "stealth"]
path = stealth
url = https://github.com/stealth/libusipp
31 changes: 31 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
FROM alpine:latest

MAINTAINER United Nations

RUN apk update && \
apk add --no-cache \
autoconf \
g++ \
make

WORKDIR /app

COPY ./* ./

WORKDIR /app/stealth/src

RUN autoconf

RUN ./configure

RUN make

RUN make install

WORKDIR /app

RUN make

CMD ["./qdns", "-h"]

MAINTAINER B
14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: '3.9'

services:
vtx:
image: ghcr.io/0-5788719150923125/qdns:1
restart: 'always'
user: 1000:1000
ulimits:
memlock: -1
stack: 67108864
build:
context: .
dockerfile: Dockerfile
shm_size: '1gb'
1 change: 1 addition & 0 deletions stealth
Submodule stealth added at 0199ad