mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 03:36:55 +08:00
19 lines
441 B
YAML
19 lines
441 B
YAML
|
services:
|
||
|
mssql:
|
||
|
container_name: ${CONTAINER_NAME}
|
||
|
image: mcr.microsoft.com/mssql/server:2022-latest
|
||
|
restart: unless-stopped
|
||
|
networks:
|
||
|
- 1panel-network
|
||
|
ports:
|
||
|
- ${PANEL_APP_PORT_HTTP}:1433
|
||
|
environment:
|
||
|
- ACCEPT_EULA=Y
|
||
|
- MSSQL_SA_PASSWORD=${MSSQL_SA_PASSWORD}
|
||
|
volumes:
|
||
|
- ./data:/var/opt/mssql/data
|
||
|
labels:
|
||
|
createdBy: "Apps"
|
||
|
networks:
|
||
|
1panel-network:
|
||
|
external: true
|