Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .eleventyignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
./_image_sources
./_drafts
./tests

Dockerfile
2 changes: 1 addition & 1 deletion .github/workflows/on_pr_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ on:
- '_config.yml'
- 'google*.html'
- 'ads.txt'
- 'serve.Dockerfile'
- 'Dockerfile'
- 'docker-compose.yml'

jobs:
Expand Down
File renamed without changes.
18 changes: 9 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
serve:
build:
context: .
dockerfile: serve.Dockerfile
dockerfile: Dockerfile
command: ["npm", "run", "serve"]
volumes:
- .:/app/src
Expand All @@ -16,7 +16,7 @@ services:
dist:
build:
context: .
dockerfile: serve.Dockerfile
dockerfile: Dockerfile
command: ["npm", "run", "dist"]
volumes:
- .:/app/src
Expand All @@ -25,7 +25,7 @@ services:
build:
build:
context: .
dockerfile: serve.Dockerfile
dockerfile: Dockerfile
command: ["npm", "run", "11ty"]
volumes:
- .:/app/src
Expand All @@ -39,7 +39,7 @@ services:
dist_clean:
build:
context: .
dockerfile: serve.Dockerfile
dockerfile: Dockerfile
volumes:
- .:/app/src
image: node:18-bullseye
Expand All @@ -50,7 +50,7 @@ services:
clean:
build:
context: .
dockerfile: serve.Dockerfile
dockerfile: Dockerfile
volumes:
- .:/app/src
image: node:18-bullseye
Expand All @@ -61,7 +61,7 @@ services:
shell:
build:
context: .
dockerfile: serve.Dockerfile
dockerfile: Dockerfile
target: debug
command: ["bash"]
volumes:
Expand All @@ -78,7 +78,7 @@ services:
http_serve:
build:
context: .
dockerfile: serve.Dockerfile
dockerfile: Dockerfile
target: httpd_serve
volumes:
- ./_site:/usr/local/apache2/htdocs/
Expand All @@ -98,7 +98,7 @@ services:
broken_links:
build:
context: .
dockerfile: serve.Dockerfile
dockerfile: Dockerfile
target: broken_link_checker
command: ["http://http_serve"]
profiles:
Expand All @@ -122,7 +122,7 @@ services:
test:
build:
context: .
dockerfile: serve.Dockerfile
dockerfile: Dockerfile
target: tests
volumes:
- ./tests:/app/src/tests
Expand Down