mirror of
https://github.com/silverstripe/doc.silverstripe.org
synced 2024-10-22 17:05:50 +02:00
15 lines
230 B
YAML
15 lines
230 B
YAML
|
version: '3.7'
|
||
|
|
||
|
x-entrypoint: &entry
|
||
|
- /bin/bash
|
||
|
- /app/docker/entrypoint.sh
|
||
|
|
||
|
services:
|
||
|
gatsby:
|
||
|
build:
|
||
|
context: .
|
||
|
working_dir: /app
|
||
|
network_mode: "host"
|
||
|
volumes:
|
||
|
- '..:/app'
|
||
|
entrypoint: *entry
|