2024-04-24 17:06:49 +02:00
|
|
|
---
|
|
|
|
services:
|
|
|
|
nginx:
|
|
|
|
image: nginx:1.25.5-alpine
|
|
|
|
container_name: nginx
|
|
|
|
ports:
|
|
|
|
- 80:80
|
|
|
|
- 443:443
|
|
|
|
volumes:
|
2024-04-24 17:40:07 +02:00
|
|
|
- ./config:/etc/nginx
|
2024-04-24 17:06:49 +02:00
|
|
|
- ./data:/usr/share/nginx/html
|
|
|
|
restart: unless-stopped
|