[add] wsdd
This commit is contained in:
parent
24e104f75a
commit
8778b2719c
11 changed files with 60 additions and 10 deletions
1
wsdd/.gitignore
vendored
Normal file
1
wsdd/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
# ignore
|
||||
24
wsdd/DockerFile
Normal file
24
wsdd/DockerFile
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
FROM alpine:latest as build
|
||||
|
||||
LABEL org.label-schema.build-date=$BUILD_DATE \
|
||||
org.label-schema.name="wsdd" \
|
||||
org.label-schema.description=" Web Service Discovery host daemon (wsdd) in a docker container " \
|
||||
org.label-schema.url="https://guillaumedsde.gitlab.io/docker-wsdd/" \
|
||||
org.label-schema.vcs-ref="$VCS_REF" \
|
||||
org.label-schema.version="$VERSION" \
|
||||
org.label-schema.vcs-url="https://github.com/guillaumedsde/docker-wsdd" \
|
||||
org.label-schema.vendor="guillaumedsde" \
|
||||
org.label-schema.schema-version="1.0"
|
||||
|
||||
ARG VERSION=master
|
||||
|
||||
WORKDIR /
|
||||
|
||||
RUN wget "https://raw.githubusercontent.com/christgau/wsdd/${VERSION}/src/wsdd.py" -O /wsdd \
|
||||
&& chmod 755 /wsdd
|
||||
|
||||
FROM gcr.io/distroless/python3
|
||||
|
||||
COPY --from=build /wsdd /usr/bin/wsdd
|
||||
|
||||
ENTRYPOINT [ "python", "/usr/bin/wsdd" ]
|
||||
1
wsdd/README.md
Normal file
1
wsdd/README.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
🐋 Web Service Discovery host daemon (wsdd)
|
||||
9
wsdd/docker-compose.yml
Normal file
9
wsdd/docker-compose.yml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
version: '3'
|
||||
|
||||
services:
|
||||
wsdd:
|
||||
wsdd: wsdd:0.0.0
|
||||
build: .
|
||||
container_name: wsdd-docker
|
||||
restart: unless-stopped
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue