Skip to content

Instantly share code, notes, and snippets.

@nissan
Last active October 12, 2020 02:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nissan/e44c6768c3efba327db33ece8091bf30 to your computer and use it in GitHub Desktop.
Save nissan/e44c6768c3efba327db33ece8091bf30 to your computer and use it in GitHub Desktop.
Start SEQ containers in docker with GELF ingestion and Syslog ingestion
version: '3'
services:
seq-input-syslog:
image: datalust/seq-input-syslog:latest
depends_on:
- seq
ports:
- "514:514/udp"
environment:
SEQ_ADDRESS: "http://seq:5341"
restart: unless-stopped
seq-input-gelf:
image: datalust/seq-input-gelf:latest
depends_on:
- seq
ports:
- "12201:12201/udp"
environment:
SEQ_ADDRESS: "http://seq:5341"
restart: unless-stopped
seq:
image: datalust/seq:latest
ports:
- "5341:5341"
- "8081:80"
environment:
ACCEPT_EULA: Y
restart: unless-stopped
volumes:
- c:\seq\data:/data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment