This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #==================================================================================================================== | |
| # Kitty Terminal Blur (Use together with 'background_opacity 0.85' on the kitty.conf) | |
| #==================================================================================================================== | |
| if [[ $(ps --no-header -p $PPID -o comm) =~ '^kitty$' ]]; then | |
| for wid in $(xdotool search --pid $PPID); do | |
| xprop -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 -id $wid &> /dev/null | |
| done | |
| fi | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | version: "3.9" | |
| services: | |
| zookeeper: | |
| container_name: zookeeper | |
| image: bitnami/zookeeper | |
| environment: | |
| ZOO_ENABLE_AUTH: true | |
| ZOO_CLIENT_USER: ${ZOO_USER:-zookeper} | |
| ZOO_CLIENT_PASSWORD: ${ZOO_PASSWORD:-password} | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | version: "3.9" | |
| services: | |
| neo4j: | |
| container_name: neo4j | |
| image: neo4j | |
| environment: | |
| NEO4J_AUTH: ${NEO4J_USER:-neo4j}/${NEO4J_USER:-password} | |
| volumes: | |
| - ./neo4j/conf:/conf | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | version: "3.9" | |
| services: | |
| cassandra: | |
| container_name: cassandra | |
| image: cassandra | |
| ports: | |
| - "9042:9042" | |
| volumes: | |
| - ./cassandra:/var/lib/cassandra | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | version: "3.9" | |
| services: | |
| rabbitmq: | |
| container_name: rabbitmq | |
| image: rabbitmq:management-alpine | |
| environment: | |
| RABBITMQ_DEFAULT_USER: ${RABBITMQ_USER:-rabbit} | |
| RABBITMQ_DEFAULT_PASS: ${RABBITMQ_PASSWORD:-password} | |
| ports: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | version: "3.9" | |
| services: | |
| redis: | |
| container_name: redis | |
| image: redis:alpine | |
| environment: | |
| REDIS_PASSWORD: ${REDIS_PASSWORD:-password} | |
| command: /bin/sh -c 'redis-server --appendonly yes --requirepass "$${REDIS_PASSWORD}"' | |
| volumes: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | version: "3.9" | |
| services: | |
| mariadb: | |
| container_name: mariadb | |
| image: mariadb | |
| environment: | |
| MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PASSWORD:-password} | |
| MARIADB_DATABASE: ${MARIADB_DATABASE:-default_database} | |
| volumes: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | version: "3.9" | |
| services: | |
| mongo: | |
| container_name: mongodb | |
| image: mongo:latest | |
| environment: | |
| MONGO_INITDB_ROOT_USERNAME: ${MONGO_USER:-mongo} | |
| MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD:-password} | |
| volumes: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | version: "3.9" | |
| services: | |
| postgres: | |
| container_name: postgres | |
| image: postgres:alpine | |
| environment: | |
| POSTGRES_USER: ${POSTGRES_USER:-postgres} | |
| POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-password} | |
| PGDATA: /data/postgres |