mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
18 lines
320 B
YAML
18 lines
320 B
YAML
app:
|
|
build:
|
|
image: danbee/chess
|
|
dockerfile: Dockerfile
|
|
depends_on:
|
|
- db
|
|
environment:
|
|
MIX_ENV: test
|
|
POSTGRES_HOST: db
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: password
|
|
|
|
db:
|
|
image: healthcheck/postgres:alpine
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: password
|