Skip to content

Instantly share code, notes, and snippets.

@nissan
Last active October 12, 2020 02:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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