docker – Blame information for rev 68

Subversion Repositories:
Rev:
Rev Author Line No. Line
68 office 1 version: '3.8'
2 services:
3 tor:
4 image: wizardrysteamworks/tor:latest
5 read_only: true
6 volumes:
7 - type: tmpfs
8 target: /run
9 environment:
10 - TOR_SOCKS_PORT:9050
11 - TOR_HTTP_TUNNEL_PORT:9055
12 - TOR_DNS_PORT:9053
13 - CHECK_CIRCUIT_PORT:7050
14 ports:
15 # SOCKS
16 - 9050:9050
17 # tor DNSPort
18 - 9053:9053
19 # CheckCircuit - https://grimore.org/windows/checkcircuit
20 - 7050:7050
21 deploy:
22 labels:
23 - shepherd.enable=true
24 - shepherd.auth.config=docker
25 replicas: 1
26 placement:
27 max_replicas_per_node: 1