Sha256: d699743201b6e9857b1b1cbabe1d40fffa834f86b1c30a1930abb5f98a1d7fec

Contents?: true

Size: 815 Bytes

Versions: 1

Compression:

Stored size: 815 Bytes

Contents

version: '3.8'

services:
  ruby:
    build:
      args:
        RUBY_VERSION: 3.1.1
      context: .
    depends_on:
      - op-connect-api
      - op-connect-sync
    environment:
      - OP_CONNECT_API_ENDPOINT=http://op-connect-api:8080/v1
    volumes:
      - .:/opt/gem
      - bundle:/usr/local/bundle

  op-connect-api:
    image: 1password/connect-api:latest
    ports:
      - 8080:8080
    volumes:
      - ./1password-credentials.json:/home/opuser/.op/1password-credentials.json
      - op-connect-data:/home/opuser/.op/data
  op-connect-sync:
    image: 1password/connect-sync:latest
    ports:
      - 8081:8080
    volumes:
      - ./1password-credentials.json:/home/opuser/.op/1password-credentials.json
      - op-connect-data:/home/opuser/.op/data

volumes:
  bundle: null
  op-connect-data: null

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
op_connect-0.1.3 docker-compose.yml