Sha256: 1abb23df6cd22cebb60263819cb10daf76f3d448ace3da2f22da1751ba889543
Contents?: true
Size: 688 Bytes
Versions: 20
Compression:
Stored size: 688 Bytes
Contents
version: '2.3' services: postgresql: image: postgres:9.5.12 environment: POSTGRES_PASSWORD: "" ports: - "5432:5432" healthcheck: test: pg_isready -U postgres start_period: 10s interval: 10s timeout: 30s retries: 3 mysql: image: mysql:5.7 environment: MYSQL_ALLOW_EMPTY_PASSWORD: "yes" ports: - "3306:3306" healthcheck: test: mysqladmin -h 127.0.0.1 -uroot ping start_period: 15s interval: 10s timeout: 30s retries: 3 healthcheck: image: busybox depends_on: postgresql: condition: service_healthy mysql: condition: service_healthy
Version data entries
20 entries across 20 versions & 3 rubygems