next-ucap-messenger/docker/docker-compose.yml

11 lines
196 B
YAML
Raw Normal View History

2019-11-12 09:54:21 +00:00
version: '3.1'
services:
nginx:
2020-01-29 06:03:48 +00:00
image: nginx:1.17.8-alpine
2019-11-12 09:54:21 +00:00
volumes:
2020-01-29 06:03:48 +00:00
- ./html:/usr/share/nginx/html:ro
2019-11-13 07:30:15 +00:00
- ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro
2019-11-12 09:54:21 +00:00
ports:
2020-01-29 06:03:48 +00:00
- 80:80