Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 473 Bytes

README.md

File metadata and controls

21 lines (19 loc) · 473 Bytes

SQL Server container in CentOS

Dockerfile for SQL Server container in CentOS with FTS and agent enable

Example docker compose file

version: '3.7'
services:
  mssql:
    image: reynier3mil/centos-mssql-full:latest
    container_name: mssql
    volumes:
      - ./data/mssql/backups:/tmp/backups
    ports:
      - 1433:1433
    environment:
      - ACCEPT_EULA=Y
      - MSSQL_SA_PASSWORD=xxxxxxxx
      - MSSQL_PID=Developer
      - MSSQL_AGENT_ENABLED=true