Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
FROM python:3-alpine
RUN pip install exabgp
RUN mkdir -p /etc/exabgp && exabgp --fi > /usr/local/etc/exabgp/exabgp.env
RUN mkfifo /run/exabgp.in && \
mkfifo /run/exabgp.out && \
chmod 666 /run/exabgp.in && \
chmod 666 /run/exabgp.out
COPY exabgp.env /usr/local/etc/exabgp/
ENTRYPOINT ["exabgp"]
CMD ["--help"]