diff options
| author | 陆秋文 <[email protected]> | 2019-05-24 14:00:55 +0800 |
|---|---|---|
| committer | 陆秋文 <[email protected]> | 2019-05-24 14:00:55 +0800 |
| commit | b86f1be0466ace61c330706127e30960bfefb569 (patch) | |
| tree | 9ce4a47ab52a0c71a4e240355556bfa925494e49 /docker-compose.yml | |
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..a2d11a6 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,12 @@ +version: '3' +services: + nginx: + image: nginx:latest + container_name: performance-test-nginx-server + volumes: + - ./conf/nginx.conf:/etc/nginx/nginx.conf + - ./ssl/:/etc/nginx/ssl/ + - ./static/:/usr/share/nginx/html/ + ports: + - 80:80 + - 443:443 |
