Sha256: 88eb048a5d151c2d5f0a08d089a0ca6743191cf9162bbd85117ddfb3e4a28d21
Contents?: true
Size: 698 Bytes
Versions: 3
Compression:
Stored size: 698 Bytes
Contents
version: '3.7' services: lib: build: . links: - mysql - postgres volumes: - ".:/activerecord_cte" mysql: image: mysql:8.0 command: mysqld --default-authentication-plugin=mysql_native_password --skip-mysqlx restart: always environment: MYSQL_DATABASE: activerecord_cte_test MYSQL_USER: user MYSQL_PASSWORD: secret MYSQL_ROOT_PASSWORD: secret ports: - 3306:3306 expose: - 3306 postgres: image: postgres:12 restart: always environment: POSTGRES_DB: activerecord_cte_test POSTGRES_USER: user POSTGRES_PASSWORD: secret ports: - 5432:5432 expose: - 5432
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
activerecord-cte-0.1.3 | docker-compose.yml |
activerecord-cte-0.1.1 | docker-compose.yml |
activerecord-cte-0.1.0 | docker-compose.yml |