]> git.immae.eu Git - github/wallabag/wallabag.git/blob - docker-compose.yml
Add basic docker-compose configuration
[github/wallabag/wallabag.git] / docker-compose.yml
1 nginx:
2 image: nginx
3 ports:
4 - "8080:80"
5 volumes:
6 - ./docker/nginx/nginx.conf:/nginx.conf
7 - ./docker/logs/nginx:/var/log/nginx
8 - .:/var/www/html
9 links:
10 - php:php
11 command: nginx -c /nginx.conf
12 php:
13 build: docker/php
14 ports:
15 - "9000:9000"
16 volumes:
17 - .:/var/www/html