From 0878d743593d1033a72ac7beb888881e6fa62d7f Mon Sep 17 00:00:00 2001 From: Larrius Date: Fri, 21 Mar 2025 12:35:13 +0000 Subject: [PATCH] Add docker-compose.yaml --- docker-compose.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..9eb5224 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,25 @@ +version: "3" + +services: + samba: + image: dockurr/samba + container_name: samba + environment: + USER: "embedika" + PASS: "P@ssw0rd!" + ports: + - "445:445" + volumes: + - /srv/samba_share:/storage + restart: always + + http_share: + image: nginx:latest + container_name: http_share + ports: + - "8080:80" + volumes: + - /srv/http_share:/usr/share/nginx/html:ro + - /srv/nginx.conf:/etc/nginx/conf.d/default.conf:ro + - /srv/.htpasswd:/etc/nginx/.htpasswd:ro + restart: always \ No newline at end of file