13 lines
237 B
YAML
13 lines
237 B
YAML
services:
|
|
homepage:
|
|
image: nginx:alpine
|
|
container_name: homepage
|
|
volumes:
|
|
- ./dist:/usr/share/nginx/html
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy-network
|
|
|
|
networks:
|
|
proxy-network:
|
|
external: true
|