diff options
Diffstat (limited to 'compose.yml')
| -rw-r--r-- | compose.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..b884097 --- /dev/null +++ b/compose.yml @@ -0,0 +1,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 |
