File: docker-compose.yml

package info (click to toggle)
ruby-will-paginate 4.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 440 kB
  • sloc: ruby: 2,734; sh: 33; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
version: '2.1'
services:
  mysql:
    image: mysql:5.7
    environment:
    - MYSQL_DATABASE=will_paginate
    - MYSQL_ALLOW_EMPTY_PASSWORD=true
    ports:
    - 3307:3306
  postgres:
    image: postgres:11
    environment:
    - POSTGRES_DB=will_paginate
    - POSTGRES_PASSWORD=postgres 
    ports:
    - 5433:5432
  mongodb:
    image: mongo:4.2
    ports:
    - 27018:27017