mirror of
https://github.com/thangisme/notes.git
synced 2024-11-03 07:09:36 -05:00
15 lines
218 B
YAML
15 lines
218 B
YAML
|
version: "3.5"
|
||
|
|
||
|
services:
|
||
|
jekyll:
|
||
|
build:
|
||
|
context: ./
|
||
|
ports:
|
||
|
- 4000:4000
|
||
|
volumes:
|
||
|
- .:/usr/src/app
|
||
|
stdin_open: true
|
||
|
tty: true
|
||
|
command: bundle exec jekyll serve -H 0.0.0.0 -t
|
||
|
|