mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
387 B
18 lines
387 B
services:
|
|
nginx1.23.1:
|
|
container_name: ${CONTAINER_NAME}
|
|
image: nginx:1.23.1
|
|
restart: always
|
|
networks:
|
|
- 1panel
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:80
|
|
- ${PANEL_APP_PORT_HTTPS}:443
|
|
volumes:
|
|
- ./conf/nginx.conf:/etc/nginx/nginx.conf
|
|
- ./log:/var/log/nginx
|
|
- ./conf/conf.d:/etc/nginx/conf.d/
|
|
|
|
networks:
|
|
1panel:
|
|
external: true |