1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-04-28 08:00:23 +08:00
1Panel-Appstore/apps/squid/7.5.0/docker-compose.yml
pooneyy 86b69e4a55
feat(squid): add squid proxy server application package
- add squid 7.5 version configuration with data.yml for form fields and internationalization
- add docker-compose.yml for container deployment with environment variable mapping
- add README.md and README_en.md with detailed product introduction and usage instructions
- add main application data.yml with metadata, tags, and supported architectures
- add logo.png for application branding
2026-03-22 18:57:42 +08:00

23 lines
544 B
YAML

services:
squid:
image: ghcr.io/pooneyy/squid:7.5
container_name: ${CONTAINER_NAME}
ports:
- ${PANEL_APP_PORT_HTTP}:3128
volumes:
- /etc/localtime:/etc/localtime:ro
- ./conf:/etc/squid
- ./cert:/etc/squid-ssl
- ./logs:/var/log/squid
environment:
SQUID_AUTH_USER: ${SQUID_AUTH_USER}
SQUID_AUTH_PASS: ${SQUID_AUTH_PASS}
SQUID_ONLY_HTTPS: ${SQUID_ONLY_HTTPS}
networks:
- 1panel-network
labels:
createdBy: Apps
networks:
1panel-network:
external: true