Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #301 from cglewis/master
Browse files Browse the repository at this point in the history
release v0.1.0
  • Loading branch information
rashley-iqt authored Aug 11, 2020
2 parents c1ec75b + 6c9eaf8 commit d504944
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 21 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# v0.1.0 (2020-08-11)

- Initial release
- Basic UI functionality
- Heatmap visualization
- Integrated workflow of tools that process PCAPs
- API that is scriptable
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.0
28 changes: 7 additions & 21 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ services:
image: 'iqtlabs/mercury:v0.11.15'
admin:
restart: always
build:
context: admin
image: 'iqtlabs/packet_cafe_admin:latest'
image: 'iqtlabs/packet_cafe_admin:v0.1.0'
ports:
- 5001:5001
networks:
Expand All @@ -30,18 +28,14 @@ services:
- '${VOL_PREFIX}/id:/id'
ui:
restart: always
build:
context: ui
image: 'iqtlabs/packet_cafe_ui:latest'
image: 'iqtlabs/packet_cafe_ui:v0.1.0'
networks:
- frontend
volumes:
- '${VOL_PREFIX}/definitions:/definitions'
web:
restart: always
build:
context: web
image: 'iqtlabs/packet_cafe_web:latest'
image: 'iqtlabs/packet_cafe_web:v0.1.0'
networks:
- frontend
volumes:
Expand All @@ -50,39 +44,31 @@ services:
- '${VOL_PREFIX}/definitions:/definitions'
lb:
restart: always
build:
context: lb
image: 'iqtlabs/packet_cafe_lb:latest'
image: 'iqtlabs/packet_cafe_lb:v0.1.0'
ports:
- 80:80
networks:
- frontend
- results
messenger:
restart: always
build:
context: messenger
image: 'iqtlabs/packet_cafe_messenger:latest'
image: 'iqtlabs/packet_cafe_messenger:v0.1.0'
networks:
- frontend
- backend
- analysis
- preprocessing
redis:
restart: always
build:
context: redis
image: 'iqtlabs/packet_cafe_redis:latest'
image: 'iqtlabs/packet_cafe_redis:v0.1.0'
networks:
- frontend
- backend
volumes:
- '${VOL_PREFIX}/redis:/data'
workers:
restart: always
build:
context: workers
image: 'iqtlabs/packet_cafe_workers:latest'
image: 'iqtlabs/packet_cafe_workers:v0.1.0'
networks:
- backend
- results
Expand Down

0 comments on commit d504944

Please sign in to comment.