Erick Ruiz de Chavez
6911ad6f64
Since this is no longer a Jekyll-only site I decided to rename the Dockerfile used for the Jekyll site to Dockerfile.jekyll to be consistent with the Gemini Dockerfile (Dockerfile.gemini).
20 lines
317 B
YAML
20 lines
317 B
YAML
services:
|
|
|
|
jekyll:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.jekyll
|
|
platform: linux/amd64
|
|
ports:
|
|
- 4000:4000
|
|
- 35729:35729
|
|
volumes:
|
|
- .:/app
|
|
|
|
gemini:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.gemini
|
|
platform: linux/amd64
|
|
volumes:
|
|
- .:/app
|