13 lines
258 B
YAML
13 lines
258 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx:stable-alpine
|
|
container_name: nginx-gateway
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./default.conf:/etc/nginx/conf.d/default.conf:ro
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|