$ cd ../amplifr-front && docker-compose up server $ cd ../amplifr-logux && docker-compose up server $ … $ cd ../amplifr-screenshot ERROR: Can't find a suitable configuration file in this directory or any parent. Are you in the right directory? Supported filenames: docker-compose.yml, docker-compose.yaml 25
Defaults module is a container for general purpose constants and # configuration options used as sane defaults for the Settings object # (config/settings.yml). Environment variables defined by .env file # will always have precedence over a default. # # A value belongs here if: # # 1. It is not a secret (like an API key). # 2. It is not specific to a personal development environment. # 3. It does not depend on dev environment (RAILS_ENV). # NOTE: Use this module for common constants for all presets module Defaults # Inherit preset-specific constants include DEFAULTS_SET.camelize.constantize AMPLIFR_MAIN_PROTOCOL = 'https' IMGPROXY_MAX_SRC_RESOLUTION = 67.2 end module Defaults module Kubernetes # TODO SCREENSHOT_URL = 'http://screenshot.screenshot' end end module Defaults module Local AMPLIFR_MAIN_DOMAIN = 'localhost.amplifr.com:3001' LANDING_URL = 'https://localhost.amplifr.com:3001' # TODO end end module Defaults module DockerCompose AMPLIFR_MAIN_DOMAIN = 'localhost.amplifr.com:3001' LANDING_URL = 'https://localhost.amplifr.com:3001' SCREENSHOT_URL = 'http://screenshot' # TODO end end https://dev.to/amplifr/sane-defaults-25pe 39
debugger support # Switch to raw terminal mode, sends stdin to #’bash' in ruby-container from pod 123456-7890 # and sends stdout/stderr from 'bash' back to # the client kubectl attach 123456-7890 \ -c ruby-container -i -t 44