Sha256: 824e270bd351b088a7d13a781c14d061c62a64ffae059c0c99807ac5b9360dc1
Contents?: true
Size: 1.43 KB
Versions: 5
Compression:
Stored size: 1.43 KB
Contents
# There will be some special variables that are automatically available in this file. # # Some of variables are from the Dockerfile and some are from other places. # # * helper.full_image_name - Docker image name with the tag when docker image is built by ufo. This is defined in ufo/settings.yml. The helper.full_image_name includes the git sha tongueroo/hi:ufo-[sha]. # * helper.dockerfile_port - Expose port in the Dockerfile. Only supports one exposed port, the first one that is encountered. # # env_vars - is a helper method that generates the proper environment Array of Hashes # common variables common = { image: helper.full_image_name, # includes the git sha tongueroo/hi:ufo-[sha]. cpu: 128, memory_reservation: 256, environment: env_file(".env") } task_definition "<%= @app %>-web" do source "main" # will use ufo/templates/main.json.erb variables(common.dup.deep_merge( family: task_definition_name, name: "web", container_port: helper.dockerfile_port, command: ["bin/web"] )) end task_definition "<%= @app %>-worker" do source "main" # will use ufo/templates/main.json.erb variables(common.dup.deep_merge( family: task_definition_name, name: "worker", command: ["bin/worker"] )) end task_definition "<%= @app %>-clock" do source "main" # will use ufo/templates/main.json.erb variables(common.dup.deep_merge( family: task_definition_name, name: "clock", command: ["bin/clock"] )) end
Version data entries
5 entries across 5 versions & 1 rubygems