10 lines
236 B
YAML
10 lines
236 B
YAML
services:
|
|
nginx:
|
|
container_name: json_files
|
|
image: nginx
|
|
ports:
|
|
- 8072:80
|
|
volumes:
|
|
- ./tools/json:/usr/share/nginx/html:ro
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
restart: unless-stopped
|