mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 12:22:12 +00:00
17 lines
191 B
YAML
17 lines
191 B
YAML
version: '3'
|
|
|
|
services:
|
|
database:
|
|
build: .
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- .:/app/:z
|
|
|
|
admin:
|
|
image: adminer
|
|
links:
|
|
- database
|
|
ports:
|
|
- "8081:8080"
|