mirror of
https://github.com/docker/docs.git
synced 2026-03-27 06:18:55 +07:00
* add php language guide --------- Signed-off-by: Craig Osterhout <craig.osterhout@docker.com> Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
15 lines
288 B
YAML
15 lines
288 B
YAML
services:
|
|
server:
|
|
build:
|
|
context: .
|
|
target: dev
|
|
ports:
|
|
- "1313:1313"
|
|
entrypoint: ["hugo", "server", "--bind", "0.0.0.0"]
|
|
develop:
|
|
watch:
|
|
- action: sync
|
|
path: .
|
|
target: /src
|
|
ignore:
|
|
- node_modules/ |