mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-26 07:13:34 +01:00
27 lines
473 B
YAML
27 lines
473 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
|
|
redpanda:
|
|
image: redpandadata/redpanda:v24.2.1
|
|
ports:
|
|
- "8081:8081"
|
|
- "8082:8082"
|
|
- "9092:9092"
|
|
- "9644:9644"
|
|
- "33145:33145"
|
|
volumes:
|
|
- ./data/etc:/etc/redpanda
|
|
- ./data/var:/var/lib/redpanda
|
|
restart: unless-stopped
|
|
|
|
console:
|
|
image: redpandadata/console:v2.7.0
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./data/etc:/etc/redpanda
|
|
depends_on:
|
|
- redpanda
|
|
restart: unless-stopped
|