Sha256: d504a51e2dd0206912d8d3973398bc42dde62d9e1c856522a6cafa05e1bd9e68
Contents?: true
Size: 573 Bytes
Versions: 23
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: rails6-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
23 entries across 23 versions & 1 rubygems