clair/docker-compose.yml
Jimmy Zelinskie 324ad5f243 *: move all references in README to HEAD
This change also points the Docker Compose file use HEAD.
2017-03-15 16:05:31 -04:00

24 lines
497 B
YAML

version: '2'
services:
postgres:
container_name: clair_postgres
image: postgres:latest
restart: unless-stopped
environment:
POSTGRES_PASSWORD: password
clair:
container_name: clair_clair
image: quay.io/coreos/clair-git:latest
restart: unless-stopped
depends_on:
- postgres
ports:
- "6060-6061:6060-6061"
links:
- postgres
volumes:
- /tmp:/tmp
- ./clair_config:/config
command: [-config, /config/config.yaml]