Sha256: 87c18534122b97e27a96c431e142c06a879ce027a1405ae06b077f6ed99a3e3a
Contents?: true
Size: 573 Bytes
Versions: 54
Compression:
Stored size: 573 Bytes
Contents
version: "3" services: pg: build: context: . dockerfile: Dockerfile.pg ports: - "5432" environment: POSTGRES_HOST_AUTH_METHOD: trust app: build: context: . dockerfile: Dockerfile image: rails5-app:${RUBY_VERSION} command: [ "./bin/rails", "server", "-b", "0.0.0.0", "webrick" ] environment: RAILS_ENV: ORM_MODULE: PGHOST: pg PGPORT: '5432' DATABASE_URL: postgres://postgres@pg APPMAP: volumes: - .:/src/app ports: - "3000" links: - pg:pg
Version data entries
54 entries across 54 versions & 1 rubygems