Skip to content

Commit

Permalink
Add a trivial docker-compose
Browse files Browse the repository at this point in the history
It does not create a container for the processor itself, simply the
required services (Postgres, Redis)

Ref #6
  • Loading branch information
kostaskol committed Sep 23, 2023
1 parent 4073683 commit 234027e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: '3'

services:
redis:
image: redis
container_name: redis-server
ports:
- "6379:6379"
networks:
- my_network

postgres:
image: postgres
container_name: postgres-server
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: infobserve
POSTGRES_DB: infobserve
ports:
- "5432:5432"
networks:
- my_network

networks:
my_network:

0 comments on commit 234027e

Please sign in to comment.