17 lines
314 B
YAML
17 lines
314 B
YAML
services:
|
|
map-frontend:
|
|
image: nginx:alpine
|
|
container_name: map-frontend
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8087:80"
|
|
volumes:
|
|
- ./nginx-conf:/etc/nginx/conf.d:ro
|
|
- ./html:/usr/share/nginx/html:ro
|
|
networks:
|
|
- npm-network
|
|
|
|
networks:
|
|
npm-network:
|
|
external: true
|