Description
I want to connect to the database for each environment—development, staging, and production—and control it by mounting the interpreter.json file, but this is currently not possible. You can check a simple test as follows:
I added the following content to the original conf/interpreter.json file: I copied the contents of the md interpreter and only modified the interpreter name to md_test.
I want to mount this file with the container and use it, but an error occurs, and I cannot access the website. The contents of the Docker Compose file I used are as follows:
services:
zeppelin-server:
hostname: zeppelin
container_name: zeppelin
image: apache/zeppelin:0.11.2
ports:
- "8080:8080"
environment:
ZEPPELIN_PORT: 8080
ZEPPELIN_MEM: -Xmx1024m -XX:MaxMetaspaceSize=512m
volumes:
- ./conf/interpreter.json:/opt/zeppelin/conf/interpreter.json
docker-compose-zeppelin-only.yml
interpreter.json (md)
interpreter.json (md_test)