No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
[[File:NQPxWuWW.png|thumb|seemingly piss in a piss collector container over a counter with other drinking vessels]] | [[File:NQPxWuWW.png|thumb|seemingly piss in a piss collector container over a counter with other drinking vessels]] | ||
<syntaxhighlight lang="Dockerfile"> | |||
FROM registry.opensuse.org/opensuse/tumbleweed:latest | |||
RUN zypper in -y -t pattern devel_basis devel_C_C++ network_admin console | |||
RUN zypper in -y git python3 libopenssl-devel libsodium-devel pcre2-devel libcurl-devel argon2-devel c-ares-devel libcares2 mt | |||
RUN useradd pissnet; \ | |||
chown -R pissnet:users /home/pissnet | |||
ENV WORKDIR=/home/pissnet/pissircd | |||
ENV HOME=/home/pissnet | |||
USER pissnet | |||
RUN git clone --single-branch https://github.com/rbertoche/pissircd $WORKDIR | |||
WORKDIR $WORKDIR | |||
RUN ./Config | |||
# if for some reason don't want to call Config (both seem to work) | |||
# ./autogen.sh && \ | |||
# ./configure --with-showlistmodes --enable-ssl --enable-libcurl \ | |||
# --with-nick-history=2000 --with-permissions=0600 --enable-dynamic-linking && | |||
# make pem | |||
RUN mkdir -p $HOME/unrealircd/tmp | |||
RUN make -j4; \ | |||
make install; | |||
VOLUME /home/pissnet/unrealircd | |||
RUN make clean; | |||
USER root | |||
RUN rm -rf /var/cache/zypp/packages | |||
#REM tbc | |||
</syntaxhighlight> |
Revision as of 08:28, 23 October 2021
pisswaterfall.duckdns.org | |
Name | pisswaterfall.duckdns.org |
---|---|
Location | Rio de Janeiro, Rio de Janeiro, Brasil |
Owner | rber |
SID | 157 |
Type | Leaf |
Status | Active |
not sure what should I put here for now :3 piss
// rber // Location: Rio de Janeiro, Rio de Janeiro, Brasil // SID: 157 link pisswaterfall.duckdns.org { incoming { mask *; }
outgoing {
hostname pisswaterfall.duckdns.org;
port 6900;
options { tls; }
} password "iWukkmm62QzoTydx1N3CBAeHCMQDWuI33lCwt86xehE=" { spkifp; } class servers; }
FROM registry.opensuse.org/opensuse/tumbleweed:latest
RUN zypper in -y -t pattern devel_basis devel_C_C++ network_admin console
RUN zypper in -y git python3 libopenssl-devel libsodium-devel pcre2-devel libcurl-devel argon2-devel c-ares-devel libcares2 mt
RUN useradd pissnet; \
chown -R pissnet:users /home/pissnet
ENV WORKDIR=/home/pissnet/pissircd
ENV HOME=/home/pissnet
USER pissnet
RUN git clone --single-branch https://github.com/rbertoche/pissircd $WORKDIR
WORKDIR $WORKDIR
RUN ./Config
# if for some reason don't want to call Config (both seem to work)
# ./autogen.sh && \
# ./configure --with-showlistmodes --enable-ssl --enable-libcurl \
# --with-nick-history=2000 --with-permissions=0600 --enable-dynamic-linking &&
# make pem
RUN mkdir -p $HOME/unrealircd/tmp
RUN make -j4; \
make install;
VOLUME /home/pissnet/unrealircd
RUN make clean;
USER root
RUN rm -rf /var/cache/zypp/packages
#REM tbc