Skip to content

Commit

Permalink
Readme fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kenstott committed Aug 31, 2024
1 parent e3e4a72 commit cb76d3d
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Look at the sample models for ideas, or, get more details from [Apache Calcite](

```shell
chmod +x ../cli-update-model.sh
../cli-update-model.sh
../cli-update-model.sh ./app/connector/calcite
```

### Start supergraph
Expand Down
52 changes: 52 additions & 0 deletions apache-atlas/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
version: '3.8'

services:
atlas:
image: apache/atlas:latest
container_name: atlas
ports:
- "21000:21000"
environment:
- ATLAS_OPTS=-Xmx1024m -Xms512m
- ATLAS_HOME=/opt/apache-atlas
- ATLAS_LOG_DIR=/opt/apache-atlas/logs
- ATLAS_PID_DIR=/opt/apache-atlas/logs
- ATLAS_EXPANDED_WEBAPP_DIR=/opt/apache-atlas/server/webapp
- ATLAS_DATA=/opt/apache-atlas/data
volumes:
- atlas_data:/opt/apache-atlas/data
- atlas_logs:/opt/apache-atlas/logs

hbase:
image: harisekhon/hbase:latest
container_name: hbase
ports:
- "16010:16010"
- "16000:16000"
- "2181:2181"
environment:
- HBASE_ROOT_LOGGER=INFO,console
volumes:
- hbase_data:/data/hbase

kafka:
image: wurstmeister/kafka:latest
container_name: kafka
ports:
- "9092:9092"
environment:
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://kafka:9092
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
depends_on:
- zookeeper

zookeeper:
image: wurstmeister/zookeeper:latest
container_name: zookeeper
ports:
- "2181:2181"

volumes:
atlas_data:
atlas_logs:
hbase_data:

0 comments on commit cb76d3d

Please sign in to comment.