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.

16 lines
460 B

  1. #
  2. # docker-compose.yml is used to set up the base config per container to be deployed
  3. # Take into account that when deploying, this base configuration is merged with the
  4. # configuration-per-environment specified at the docker-compose.override.yml
  5. # Further details and docs: https://docs.docker.com/compose/extends/
  6. #
  7. version: '2'
  8. services:
  9. sql.data:
  10. image: microsoft/mssql-server-linux
  11. basket.data:
  12. image: redis
  13. ports:
  14. - "6379:6379"