Sha256: 3c4ecb7e758d8ba712f3278e4443d0945c1f8ac11609ee796cc88f3b26d3730c
Contents?: true
Size: 579 Bytes
Versions: 3
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: rails7-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
3 entries across 3 versions & 1 rubygems