2021-06-30 07:00:00 +00:00
|
|
|
services:
|
|
|
|
app:
|
2021-07-03 22:00:45 +00:00
|
|
|
build:
|
2021-12-29 18:31:46 +00:00
|
|
|
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
|
2021-10-26 21:38:58 +00:00
|
|
|
ports:
|
|
|
|
- "${SCULPIN_PORT:-80}:${SCULPIN_PORT:-80}"
|
|
|
|
env_file:
|
|
|
|
- .env
|
2021-12-29 18:31:46 +00:00
|
|
|
tty: true
|