Some checks failed
Build and Deploy / Build & Push Image (push) Failing after 6s
25 lines
482 B
YAML
25 lines
482 B
YAML
services:
|
|
web:
|
|
build:
|
|
context: .
|
|
dockerfile: dev.dockerfile
|
|
ports:
|
|
- "4000:4000"
|
|
environment:
|
|
- MIX_ENV=dev
|
|
- PHX_HOST=localhost
|
|
volumes:
|
|
- .:/app
|
|
- deps:/app/deps
|
|
- build:/app/_build
|
|
- type: bind
|
|
source: ./.cobblemon-data
|
|
target: /cobblemon-data
|
|
bind:
|
|
create_host_path: false
|
|
command: sh -c "mix deps.get && mix assets.setup && mix phx.server"
|
|
|
|
volumes:
|
|
deps:
|
|
build:
|