refactor: move into a website directory
This commit is contained in:
parent
86529d7148
commit
3c5c0e808a
747 changed files with 133 additions and 2 deletions
22
website/docker-compose.yaml
Normal file
22
website/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
services:
|
||||
app:
|
||||
build:
|
||||
context: .
|
||||
target: build
|
||||
image: "ghcr.io/opdavies/oliverdavies.uk-web:${DOCKER_TAG:-latest}"
|
||||
command: "sculpin generate --clean --no-interaction --url ${SCULPIN_URL:-http://localhost} --env ${SCULPIN_ENV:-dev} ${SCULPIN_GENERATE_ARGS}"
|
||||
volumes:
|
||||
- .:/app
|
||||
tty: true
|
||||
expose:
|
||||
- 8000
|
||||
networks:
|
||||
- web
|
||||
labels:
|
||||
- "traefik.docker.network=traefik_proxy"
|
||||
- "traefik.http.routers.oliverdavies.rule=Host(`oliverdavies.docker.localhost`)"
|
||||
|
||||
networks:
|
||||
web:
|
||||
external:
|
||||
name: traefik_proxy
|
||||
Loading…
Add table
Add a link
Reference in a new issue