1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 08:49:16 +08:00
1Panel/apps/nginx/versions/1.23.1/docker-compose.yml

19 lines
416 B
YAML
Raw Normal View History

2022-09-27 22:53:24 +08:00
services:
nginx1.23.1:
container_name: ${CONTAINER_NAME}
image: nginx:1.23.1
restart: always
networks:
- 1panel
2022-09-27 22:53:24 +08:00
ports:
2022-10-10 22:56:42 +08:00
- ${PANEL_APP_PORT_HTTP}:80
- ${PANEL_APP_PORT_HTTPS}:443
2022-09-27 22:53:24 +08:00
volumes:
- ./conf/nginx.conf:/etc/nginx/nginx.conf
- ./log:/var/log/nginx
- ./conf/conf.d:/etc/nginx/conf.d/
2022-11-16 10:31:35 +08:00
- ./ssl:/etc/nginx/ssl
networks:
1panel:
external: true