Sha256: 07e5ab1dacacb1562dabff69593dfa569f66e6522f9bd6569c830f953a94e3f6
Contents?: true
Size: 572 Bytes
Versions: 38
Compression:
Stored size: 572 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: rails-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
38 entries across 19 versions & 1 rubygems