Skip to content

Python based MicroServices running with docker-compose for PoC purposes.

License

Notifications You must be signed in to change notification settings

engjoy/suricate_docker_compose

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker-compose, Docker and Suricate

The tool docker-compose allows for easy deployment of a dockerized development environment for suricate.

Install docker & docker-compose and just run docker-compose up -d to get a single user development environment going.

$ sudo docker-compose -p engjoy up -d
Recreating engjoy_mongo_1...
Recreating engjoy_rabbit_1...
Recreating engjoy_frontend_1...
Recreating engjoy_execnode_1...
$ sudo docker-compose -p engjoy ps   
      Name                     Command               State           Ports          
-----------------------------------------------------------------------------------
engjoy_execnode_1   python /tmp/execnode.py foo      Up                             
engjoy_frontend_1   python /tmp/frontend.py          Up      0.0.0.0:8888->8888/tcp 
engjoy_mongo_1      mongod                           Up      27017/tcp, 28017/tcp   
engjoy_rabbit_1     /docker-entrypoint.sh rabb ...   Up      5672/tcp           

Go here to access the service. Data is persisted using the MongoDB data files in /tmp.

Useful commands

  • docker-compose build
  • docker-compose ps
  • docker rmi $(docker images -q -f dangling=true)

About

Python based MicroServices running with docker-compose for PoC purposes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%