fix: replace PWD with .

This commit is contained in:
Winston Smith 2023-12-03 23:48:55 +01:00
parent d436b32e37
commit c0facbd8a9
No known key found for this signature in database
GPG Key ID: DFD784DB2A6F7A07

View File

@ -3,13 +3,13 @@ services:
jekyll:
container_name: jekyll
build:
context: ${PWD}
context: .
args:
BLOG_NAME: ${BLOG_NAME:-blog}
env_file: ${PWD}/data/.env
env_file: ./data/.env
ports:
- ${LIVERELOAD_PORT:-10000}:10000
- ${WWW_PORT:-4000}:4000
volumes:
- ${PWD}/jekyll:/app/jekyll
- ${PWD}/data:/opt/jekyll
- ./jekyll:/app/jekyll
- ./data:/opt/jekyll