2023-11-22 08:26:10 +01:00
|
|
|
services:
|
|
|
|
nginx-www:
|
2023-12-06 08:42:31 +01:00
|
|
|
image: nginx:alpine
|
2023-11-22 08:26:10 +01:00
|
|
|
restart: always
|
|
|
|
container_name: nginx-www
|
2023-12-06 08:42:31 +01:00
|
|
|
user: '101:101'
|
2023-11-22 08:26:10 +01:00
|
|
|
ports:
|
2024-02-15 11:24:39 +01:00
|
|
|
- 8082:80
|
2023-11-22 08:26:10 +01:00
|
|
|
volumes:
|
|
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
|
|
- ./index:/mnt/index
|