Sha256: 918239e9ee5e84a6d3e7ed8a9620230323d40d316829b1c0295595133af1308f

Contents?: true

Size: 758 Bytes

Versions: 1

Compression:

Stored size: 758 Bytes

Contents

---
version: '3.7'
services:
  app:
    image: "${DOCKER_ORGANIZATION}/${DOCKER_REPOSITORY}:${DOCKER_TAG}"
    environment:
      RAILS_LOG_TO_STDOUT: '1'
      RAILS_SERVE_STATIC_FILES: '1'
      WEB_PRELOAD_APP: '1'
      WEB_HEALTHCHECK_PATH: "/"
      DATABASE_URL: sqlite3:db/production.sqlite3
      HOST_UID:
      RAILS_ENV:
      SECRET_KEY_BASE:
      WEB_CONCURRENCY:
      WEB_TIMEOUT:
      WEB_WORKER_PROCESSES:
    ports:
    - "${PUBLISH_PORT:?PUBLISH_PORT must be provided}:8080"
    deploy:
      mode: replicated
      replicas: "${REPLICAS:-3}"
    logging:
      driver: json-file
      options:
        max-size: 10m
        max-file: '5'
    networks:
      local: {}
volumes: {}
networks:
  local:
    name: "${COMPOSE_PROJECT_NAME}"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fiver-0.0alpha orchestration/docker-compose.production.yml