mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-14 13:01:09 +00:00
18 lines
349 B
YAML
18 lines
349 B
YAML
|
nginx:
|
||
|
image: nginx
|
||
|
ports:
|
||
|
- "8080:80"
|
||
|
volumes:
|
||
|
- ./docker/nginx/nginx.conf:/nginx.conf
|
||
|
- ./docker/logs/nginx:/var/log/nginx
|
||
|
- .:/var/www/html
|
||
|
links:
|
||
|
- php:php
|
||
|
command: nginx -c /nginx.conf
|
||
|
php:
|
||
|
build: docker/php
|
||
|
ports:
|
||
|
- "9000:9000"
|
||
|
volumes:
|
||
|
- .:/var/www/html
|