mirror of
https://github.com/kieraneglin/pinchflat.git
synced 2026-01-23 02:24:24 +00:00
* Added local tooling config files to the tooling/ directory * Moved as many docker-related files as possible * Updated dockerfile path * Updated the correct dockerfile instead how about * Off day - jeez louise * Juggled around some more dockerfiles * more dockerfile * More docker tests * it's docker time * One more shot
14 lines
295 B
YAML
14 lines
295 B
YAML
services:
|
|
phx:
|
|
build:
|
|
context: .
|
|
dockerfile: ./docker/dev.Dockerfile
|
|
volumes:
|
|
- '.:/app'
|
|
ports:
|
|
- '4008:4008'
|
|
command: bash -c "chmod +x docker/docker-run.dev.sh && docker/docker-run.dev.sh"
|
|
stdin_open: true
|
|
tty: true
|
|
env_file:
|
|
- .env
|