From a2fac7bc0b1a5d825b8ed8d07923a17cb16dc32c Mon Sep 17 00:00:00 2001 From: CaptainJack2491 Date: Sat, 27 Dec 2025 16:39:29 +0000 Subject: inital commit --- compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 compose.yml (limited to 'compose.yml') 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 -- cgit v1.2.3