services: hop: container_name: apache_hop image: apache/hop:2.14.0 restart: unless-stopped ports: - "127.0.0.1:8179:8079" # shutdown port - "127.0.0.1:8180:8080" # application port volumes: - ./files:/files environment: HOP_LOG_LEVEL: Basic HOP_PROJECT_FOLDER: /files HOP_PROJECT_NAME: samples HOP_RUN_CONFIG: local networks: - internal web: container_name: apache_hop_web image: apache/hop-web:2.14.0 restart: unless-stopped ports: - "127.0.0.1:8080:8080" # web ui @ http://localhost:8080/ui environment: HOP_PROJECT_FOLDER: /files HOP_PROJECT_NAME: samples HOP_SERVER_HOSTNAME: hop HOP_SERVER_PORT: 8080 volumes: - ./files:/files - ./config:/config networks: - internal networks: internal: