mirror of
https://github.com/thangisme/notes.git
synced 2024-11-18 15:36:12 -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
|
|
|