mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
19 lines
426 B
YAML
19 lines
426 B
YAML
# Docker Compose-like syntax, see here for details:
|
|
# https://documentation.codeship.com/pro/builds-and-configuration/services/
|
|
app:
|
|
build:
|
|
image: danbee/chess
|
|
dockerfile: Dockerfile
|
|
environment:
|
|
MIX_ENV: test
|
|
PGHOST: db
|
|
PGUSER: postgres
|
|
PGPASSWORD: password
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: healthcheck/postgres:alpine
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: password
|