tspence / docker-examples

Docker examples and scripts
MIT License
8 stars 0 forks source link

Docker example scripts

This repository contains examples of Docker setup scripts I have developed that may be of use to others.

SQL Server with full-text search

SQL Server with full-text search - A dockerfile build script that generates SQL Server and installs full-text search. To use this dockerfile, you must specify the following environment variables:

Example docker compose script:

version: "3.2"
services:

  sqlserver:
    container_name: sqlserver
    build:
      dockerfile: sqlserver-fulltext.Dockerfile
    ports:
      - "1433:1433"
    environment:
      SA_PASSWORD: "Some4Complex#Password"
      ACCEPT_EULA: "Y"