diff options
| author | CaptainJack2491 <jayrupnakawala@gmail.com> | 2025-12-27 16:39:29 +0000 |
|---|---|---|
| committer | CaptainJack2491 <jayrupnakawala@gmail.com> | 2025-12-27 16:39:29 +0000 |
| commit | a2fac7bc0b1a5d825b8ed8d07923a17cb16dc32c (patch) | |
| tree | 7b38225470d75f950b6ccfcd93b02a1b431acb58 /compose.yml | |
inital commit
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 |
