mirror of
https://github.com/php-fig/www.php-fig.org.git
synced 2026-03-23 22:42:13 +01:00
41 lines
738 B
YAML
41 lines
738 B
YAML
version: '3.5'
|
|
|
|
services:
|
|
php:
|
|
build:
|
|
args:
|
|
UID: 1234
|
|
GID: 5678
|
|
context: .
|
|
user: fig
|
|
volumes:
|
|
- .:/fig-website
|
|
working_dir: /fig-website
|
|
command:
|
|
- 'sculpin'
|
|
- 'generate'
|
|
- '--watch'
|
|
- '--server'
|
|
ports:
|
|
- 8000:8000
|
|
|
|
html-proofer:
|
|
image: 18fgsa/html-proofer
|
|
working_dir: /fig-website
|
|
volumes:
|
|
- .:/fig-website
|
|
entrypoint: 'sh'
|
|
|
|
node-sass:
|
|
image: catchdigital/node-sass:8.12.0-alpine
|
|
user: 1000:1000
|
|
working_dir: /fig-website
|
|
volumes:
|
|
- .:/fig-website
|
|
command:
|
|
- 'node-sass'
|
|
- '--output-style=compressed'
|
|
- '--watch'
|
|
- 'source/_sass/all.scss'
|
|
- 'output_dev/css/all.css'
|