11 lines
185 B
YAML
11 lines
185 B
YAML
|
services:
|
||
|
web:
|
||
|
build:
|
||
|
context: ..
|
||
|
dockerfile: docker/Dockerfile
|
||
|
ports:
|
||
|
- "8080:80"
|
||
|
volumes:
|
||
|
- ..:/usr/share/nginx/html
|
||
|
restart: unless-stopped
|