oliverdavies.uk/docker-compose.yaml

14 lines
395 B
YAML
Raw Normal View History

2021-06-30 07:00:00 +00:00
services:
app:
2021-07-03 22:00:45 +00:00
build:
context: .
target: build
command: sculpin generate --clean --port "${SCULPIN_PORT:-80}" --url "${SCULPIN_URL:-http://localhost}" --env "${SCULPIN_ENV:-dev}" "${SCULPIN_GENERATE_ARGS}" --output-dir output --no-interaction
2021-06-30 07:00:00 +00:00
volumes:
- .:/app
ports:
- "${SCULPIN_PORT:-80}:${SCULPIN_PORT:-80}"
env_file:
- .env
tty: true