Created
March 25, 2023 15:16
-
-
Save heysamtexas/7ae00d0e841b29138d3bad86a3072bbf to your computer and use it in GitHub Desktop.
Another tinyproxy docker-compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
tinyproxy: | |
image: registry.gitlab.com/kalaksi-containers/tinyproxy | |
# You can also use GitLab as an alternative to Docker Hub: | |
# image: registry.gitlab.com/kalaksi-containers/tinyproxy | |
restart: unless-stopped | |
cap_drop: | |
- ALL | |
ports: | |
- 6666:8888 | |
environment: | |
DISABLE_VIA_HEADER: 'yes' | |
STAT_HOST: tinyproxy.stats | |
MAX_CLIENTS: 100 | |
ALLOWED_NETWORKS: x.x.x.x/x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment