mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
20 lines
387 B
YAML
20 lines
387 B
YAML
version: '3'
|
|
services:
|
|
app:
|
|
build: .
|
|
command: /bin/bash -c 'mix ecto.create && mix phx.server'
|
|
ports:
|
|
- "4000:4000"
|
|
environment:
|
|
MIX_ENV: dev
|
|
PGHOST: db
|
|
PGUSER: postgres
|
|
PGPASSWORD: password
|
|
links:
|
|
- db
|
|
db:
|
|
image: healthcheck/postgres:alpine
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: password
|