oliverdavies.uk/docker-compose.yaml

15 lines
396 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
image: "ghcr.io/opdavies/oliverdavies.uk-web:${DOCKER_TAG:-latest}"
2022-02-24 00:15:58 +00:00
command: "sculpin generate --clean --port ${SCULPIN_PORT:-8000} --url ${SCULPIN_URL:-http://localhost} --env ${SCULPIN_ENV:-dev} ${SCULPIN_GENERATE_ARGS}"
2021-06-30 07:00:00 +00:00
volumes:
- .:/app
ports:
2022-02-24 00:15:58 +00:00
- "8000:8000"
env_file:
- .env
tty: true