mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 16:43:36 +00:00
expanded services
This commit is contained in:
@@ -1,2 +1,5 @@
|
|||||||
HOSTNAME=localhost
|
HOSTNAME=localhost
|
||||||
|
|
||||||
|
# PORTS
|
||||||
KAFKA_PORT=9092
|
KAFKA_PORT=9092
|
||||||
|
REDIS_PORT=6377
|
||||||
|
|||||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
**/.env
|
||||||
@@ -1,4 +1,12 @@
|
|||||||
services:
|
services:
|
||||||
|
redis:
|
||||||
|
container_name: "PHANTOM-redis"
|
||||||
|
image: redis:7-alpine
|
||||||
|
ports:
|
||||||
|
- "${REDIS_PORT:-6378}:6379"
|
||||||
|
volumes:
|
||||||
|
- phantom_redis_data:/data
|
||||||
|
restart: unless-stopped
|
||||||
zookeeper:
|
zookeeper:
|
||||||
container_name: "PHANTOM-zookeeper"
|
container_name: "PHANTOM-zookeeper"
|
||||||
image: confluentinc/cp-zookeeper:latest
|
image: confluentinc/cp-zookeeper:latest
|
||||||
@@ -25,3 +33,4 @@ services:
|
|||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
phantom_kafka_data:
|
phantom_kafka_data:
|
||||||
|
phantom_redis_data:
|
||||||
|
|||||||
Reference in New Issue
Block a user