Sha256: cdfcb060c351b62e2e549c7ce5eda161952ee43efba9fac8036b8f9a92ad8368

Contents?: true

Size: 916 Bytes

Versions: 1

Compression:

Stored size: 916 Bytes

Contents

version: '3.3'

services:
  app: &app
    build:
      context: .
      args:
        NODE_MAJOR: "12"
        YARN_VERSION: "1.22.4"
        RUBY_VERSION: ${RUBY_VERSION}
    image: bootstrap-form:latest-$RUBY_VERSION
    tmpfs:
      - /tmp

  shell:
    <<: *app
    stdin_open: true
    tty: true
    volumes:
      - .:/app:cached
    environment:
      - SSH_AUTH_SOCK=/ssh-agent
      - NODE_ENV=development
      - BOOTSNAP_CACHE_DIR=/usr/local/bundle/_bootsnap
      - WEB_CONCURRENCY=1
      - HISTFILE=/app/.bash_history
      - SELENIUM_HOST=selenium
      - SELENIUM_PORT=4444
      - TEST_APP_HOST=shell
      - TEST_APP_PORT=3001
    ports:
      - "3001:3001"
    command: /bin/bash

  selenium:
    image: selenium/standalone-chrome:118.0
    logging:
      driver: none
    stdin_open: true
    tty: true
    environment:
      - LANG=en_CA.UTF-8
    ports:
      - '4444:4444'
      - '5900:5900'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bootstrap_form-5.4.0 docker-compose-system-test.yml