aboutsummaryrefslogtreecommitdiffhomepage
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorFabien MEURILLON <fabien@meurillon.org>2016-01-09 14:47:32 +0100
committerFabien MEURILLON <fabien@meurillon.org>2016-01-10 14:41:42 +0100
commit540ef5e084db2295d7ca476c980ec10fb90e9722 (patch)
tree41cad93a774eb342abf81ba4cf1cbf6d803b9d2b /docker-compose.yml
parent5ad863c63a023d754998a08ec55f43b3ebe2ede9 (diff)
downloadwallabag-540ef5e084db2295d7ca476c980ec10fb90e9722.tar.gz
wallabag-540ef5e084db2295d7ca476c980ec10fb90e9722.tar.zst
wallabag-540ef5e084db2295d7ca476c980ec10fb90e9722.zip
Add basic docker-compose configuration
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 00000000..bc469419
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,17 @@
1nginx:
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
12php:
13 build: docker/php
14 ports:
15 - "9000:9000"
16 volumes:
17 - .:/var/www/html