From 0c2e3a66e03841ec4e15003cbf98242b46a36170 Mon Sep 17 00:00:00 2001 From: aetos Date: Tue, 23 Sep 2025 10:50:44 +0000 Subject: [PATCH] Add docker-compose.yaml --- docker-compose.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..9d15f23 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,18 @@ +services: + nginx: + image: nginx:alpine + container_name: nginx + ports: + - "80:80" + - "443:443" + volumes: + - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro + environment: + - TZ=${TZ} + restart: unless-stopped + extra_hosts: + - "server-pi:192.168.1.35" + - "private-pi:192.168.1.111" + dns: + - 1.1.1.1 + - 8.8.8.8 \ No newline at end of file