add: docker nginx conf

This commit is contained in:
2025-04-23 20:49:28 +02:00
parent 73dfaf4622
commit 55bc1b36d1
2 changed files with 54 additions and 0 deletions

10
docker-compose.yml Normal file
View File

@ -0,0 +1,10 @@
version: "3.8"
services:
my-pictures:
image: nginx
volumes:
- ./test_out:/usr/share/nginx/html
- ./config:/etc/nginx/conf.d/
ports:
- 8089:80
networks: {}