1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-27 22:14:58 +08:00
1Panel-Appstore/apps/squid/7.5.0/docker-compose.yml
pooneyy 9dde0b27ee
chore(squid): correct docker image tag version
- update image tag from `7.5` to `7.5.0` to match the exact version specified in the app directory
2026-03-22 20:35:18 +08:00

23 lines
546 B
YAML

services:
squid:
image: ghcr.io/pooneyy/squid:7.5.0
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