Compare commits

...

2 Commits

Author SHA1 Message Date
Julia f7d04461dd Add tor-alpine Dockerfiles 2022-03-05 23:06:04 +01:00
Julia 6822a3b61f Add lighttpd-alpine Dockerfiles 2022-03-05 23:01:53 +01:00
4 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,8 @@
FROM alpine:latest
# Install lighttpd
RUN apk add lighttpd
# Run lighttpd in foreground with config file /etc/lighttpd/lighttpd.conf
USER root
CMD ["lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"]

2
lighttpd-alpine/build.sh Executable file
View File

@ -0,0 +1,2 @@
docker pull alpine:latest
docker build --no-cache -t lighttpd-alpine .

9
tor-alpine/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM alpine:latest
# Install tor
RUN apk add tor
# Run tor with config file /etc/tor/torrc
USER tor
WORKDIR /var/lib/tor
CMD ["tor", "-f", "/etc/tor/torrc"]

2
tor-alpine/build.sh Executable file
View File

@ -0,0 +1,2 @@
docker pull alpine:latest
docker build --no-cache -t tor-alpine .