mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
23 lines
372 B
YAML
23 lines
372 B
YAML
version: '3.4'
|
|
|
|
services:
|
|
pgunit:
|
|
# image: fpellet/gildedrose-refactoring-kata:pgunit
|
|
build:
|
|
context: .
|
|
target: pgunit
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- .:/app/:z
|
|
|
|
pgtap:
|
|
# image: fpellet/gildedrose-refactoring-kata:pgtap
|
|
build:
|
|
context: .
|
|
target: pgtap
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- .:/app/:z
|