mirror of
https://github.com/cmehay/docker-tor-hidden-service.git
synced 2025-05-25 11:22:23 +00:00
initial commit
This commit is contained in:
commit
45219ce52f
5 changed files with 166 additions and 0 deletions
23
Dockerfile
Normal file
23
Dockerfile
Normal file
|
@ -0,0 +1,23 @@
|
|||
FROM debian:jessie
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
tor \
|
||||
python3 \
|
||||
git \
|
||||
ca-certificates
|
||||
|
||||
ADD assets/docker-entrypoint.sh /
|
||||
ADD assets/tor_config.py /
|
||||
|
||||
RUN chmod +x /docker-entrypoint.sh
|
||||
|
||||
RUN git clone https://github.com/cmehay/python-docker-tool.git /docker
|
||||
RUN touch /docker/__init__.py
|
||||
|
||||
VOLUME ["/var/lib/tor/hidden_service/"]
|
||||
|
||||
ENTRYPOINT ["/docker-entrypoint.sh"]
|
||||
|
||||
CMD ["tor"]
|
Loading…
Add table
Add a link
Reference in a new issue