https://github.com/thbkrkr/squid
Manage containers using docker-compose at scale
https://github.com/thbkrkr/squid
Last synced: 2 months ago
JSON representation
Manage containers using docker-compose at scale
- Host: GitHub
- URL: https://github.com/thbkrkr/squid
- Owner: thbkrkr
- Created: 2016-06-06T05:26:13.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-28T21:24:54.000Z (about 10 years ago)
- Last Synced: 2025-03-02T17:48:19.368Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 926 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Squid
Manage containers using docker-compose at scale.

## Getting started
On each node of your cluster,
start squid by given a `compose/` directory with compose files:
```
docker run -d \
--name squid \
--hostname=squid-$(hostname) \
-p 4242:4242 \
-v $(pwd)/compose:/app/compose \
-v /var/run/docker.sock:/var/run/docker.sock \
--restart=always \
krkr/squid
```