blob: b8840976b0fe9f6504f914536375faf1cbce0a32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
services:
homepage:
image: nginx:alpine
container_name: homepage
restart: unless-stopped
ports:
- "8080:80"
volumes:
- ./:/usr/share/nginx/html:ro
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
networks:
- nginx_default
networks:
nginx_default:
external: true
|