mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-16 15:58:17 +00:00
8 lines
164 B
Docker
8 lines
164 B
Docker
FROM alpine:latest
|
|
|
|
# 9050 SOCKS port
|
|
# 9051 control port
|
|
# 5353 DNS port
|
|
EXPOSE 9050 9051 5353
|
|
RUN apk add --no-cache tor
|
|
CMD tor -f /etc/tor/torrc
|