mirror of
https://github.com/b4tman/docker-squid.git
synced 2024-11-21 18:56:54 +00:00
update README and docker-compose example
This commit is contained in:
parent
c1bdc25e98
commit
c0bf6b5467
40
README.md
40
README.md
@ -1,4 +1,42 @@
|
|||||||
|
[![](https://images.microbadger.com/badges/image/b4tman/squid.svg)](https://microbadger.com/images/b4tman/squid "Get your own image badge on microbadger.com")
|
||||||
|
|
||||||
# docker-squid
|
# docker-squid
|
||||||
|
|
||||||
Docker Squid container based on Alpine Linux
|
Docker Squid container based on Alpine Linux.
|
||||||
|
|
||||||
|
Automated builds of the image are available on [Dockerhub](https://hub.docker.com/r/b4tman/squid).
|
||||||
|
|
||||||
|
> **Note**: [armhf](https://github.com/b4tman/docker-squid/tree/armhf) image is based on **experimental** [armhf/alpine](https://hub.docker.com/r/armhf/alpine/) image.
|
||||||
|
|
||||||
|
# Quick Start
|
||||||
|
|
||||||
|
Just launch container:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -p 3128:3128 b4tman/squid
|
||||||
|
```
|
||||||
|
|
||||||
|
or use [docker-compose](https://docs.docker.com/compose/):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
wget https://raw.githubusercontent.com/b4tman/docker-squid/master/docker-compose.yml
|
||||||
|
docker-compose up
|
||||||
|
```
|
||||||
|
|
||||||
|
# Configuration
|
||||||
|
|
||||||
|
## Environment variables:
|
||||||
|
|
||||||
|
- **SQUID_CONFIG_FILE**: Specify the configuration file for squid. Defaults to `/etc/squid/squid.conf`.
|
||||||
|
|
||||||
|
|
||||||
|
## Example:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -p 3128:3128 \
|
||||||
|
--env='SQUID_CONFIG_FILE=/etc/squid/my-squid.conf' \
|
||||||
|
--volume=/srv/docker/squid/squid.conf:/etc/squid/my-squid.conf:ro \
|
||||||
|
b4tman/squid
|
||||||
|
```
|
||||||
|
|
||||||
|
This will start a squid container with your config file `/srv/docker/squid/squid.conf`.
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
version: '2'
|
version: '2'
|
||||||
services:
|
services:
|
||||||
squid:
|
squid:
|
||||||
build: .
|
|
||||||
image: 'b4tman/squid'
|
image: 'b4tman/squid'
|
||||||
container_name: 'my-squid'
|
container_name: 'my-squid'
|
||||||
restart: always
|
restart: always
|
||||||
|
Loading…
Reference in New Issue
Block a user