Sha256: 60e1ce476013f6bb0636845d323c2eaaa90fe0dcf3786960c2290da21116382c
Contents?: true
Size: 579 Bytes
Versions: 31
Compression:
Stored size: 579 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: rails6-app:${RUBY_VERSION} command: [ "./bin/rails", "server", "-b", "0.0.0.0", "-u", "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
31 entries across 31 versions & 1 rubygems