This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"name": "S-1", "description": "This filing is a pre-effective registration statement submitted when a company decides to go public. Commonly referred to as an \"IPO\" (Initial Public Offering) filing.", "type":"Registration Statement"}, | |
{"name": "S-1", "description": "This filing is a pre-effective registration statement submitted when a company decides to go public. Commonly referred to as an \"IPO\" (Initial Public Offering) filing.", "type":"Registration Statement"}, | |
{"name": "S-1/A", "description": "This filing is a pre-effective amendment to an S-1 IPO filing.", "type":"Registration Statement"}, | |
{"name": "S-1MEF", "description": "Registration of up to an additional 20% of securities for any offering registered on an S-1.", "type":"Registration Statement"}, | |
{"name": "POS AM", "description": "This filing is a post-effective amendment to an S-Type filing.", "type":"Registration Statement"}, | |
{"name": "S-2", "description": "This filing is an optional registration form that may be u |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:latest | |
WORKDIR /app | |
COPY . . | |
RUN npm install | |
CMD ["npm", "start"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.8' | |
services: | |
redis: | |
image: redis:latest | |
ports: | |
- 6379:6379 | |
networks: | |
- redisnet | |
redis-insights: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:1.8 | |
WORKDIR /go/src/app | |
COPY stream.go stream.go | |
RUN go get github.com/CaliDog/certstream-go | |
RUN go get github.com/op/go-logging | |
RUN go build stream.go | |
CMD ["./stream"] |