forked from jay-to-the-dee/Windscribe-HTTPproxy-dockerized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
36 lines (33 loc) · 965 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: '3.7'
services:
windscribe-httpproxy:
image: dilks/windscribe-httpproxy
restart: always
cap_add:
- NET_ADMIN
init: true
environment:
- WINDSCRIBE_USERNAME=${WINDSCRIBE_USERNAME}
- WINDSCRIBE_PASSWORD=${WINDSCRIBE_PASSWORD}
- HOST_PORT=${HOST_PORT:-8888} #Pass for echo purposes
- WINDSCRIBE_COUNTRY=${WINDSCRIBE_COUNTRY}
dns:
- 1.1.1.1
- 1.0.0.1
ports:
- "${HOST_PORT:-8888}:8888"
tmpfs:
- /etc/windscribe:exec,mode=700,size=1m
# volumes: #docker-compose still doesn't support this properly yet :(
# ^^ So carry on using tmpfs: for now ^^
# - type: tmpfs
# target: /etc/windscribe
# mode: exec,mode=700,size=1m
networks:
proxy-network:
aliases:
- windscribe-httpproxy
networks:
proxy-network:
driver: bridge
# enable_ipv6: false