-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (35 loc) · 800 Bytes
/
docker-compose.yml
File metadata and controls
38 lines (35 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
version: '3.3'
services:
mssql:
container_name: SimpleChat-MSSQL-Server
image: microsoft/mssql-server-linux:2017-latest
environment:
- MSSQL_SA_PASSWORD=Pass@word
- ACCEPT_EULA=Y
- MSSQL_PID=Developer
ports:
- "1433:1433"
redis:
image: "redis:alpine"
container_name: SimpleChat-Redis
command: --port 6300
ports:
- "5100:6300"
expose:
- "5100"
volumes:
- type: volume
source: redis-data
target: /data
restart: always
redis-commander:
container_name: SimpleChat-Redis-Commander
hostname: redis-commander
image: rediscommander/redis-commander:latest
restart: always
environment:
- REDIS_HOSTS=local:redis:6300
ports:
- "8082:8081"
volumes:
redis-data: {}