24 lines
557 B
YAML
24 lines
557 B
YAML
services:
|
|
certimate:
|
|
image: "certimate/certimate:v0.4.18"
|
|
container_name: ${CONTAINER_NAME}
|
|
restart: always
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- "${PANEL_APP_PORT_HTTP}:8090"
|
|
volumes:
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "/etc/timezone:/etc/timezone:ro"
|
|
- "${DATA_PATH}:/app/pb_data"
|
|
labels:
|
|
createdBy: "Apps"
|
|
environment:
|
|
- http_proxy=${PANEL_HTTP_PROXY}
|
|
- https_proxy=${PANEL_HTTPS_PROXY}
|
|
- NO_PROXY=${PANEL_NO_PROXY}
|
|
|
|
networks:
|
|
1panel-network:
|
|
external: true
|