-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcompose.yml
More file actions
40 lines (36 loc) · 792 Bytes
/
compose.yml
File metadata and controls
40 lines (36 loc) · 792 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
39
40
services:
redis:
image: docker.io/redis:8.2
container_name: redis
ports:
- "6379:6379"
command: redis-server --appendonly no
healthcheck:
test: [ "CMD", "redis-cli", "ping" ]
interval: 10s
timeout: 3s
retries: 3
start_period: 5s
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
container_name: mssql
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: verYs3cret
ports:
- "1433:1433"
volumes:
- "qtt-mssql:/var/opt/mssql"
postgresql:
image: postgres:latest
container_name: postgresql
environment:
POSTGRES_PASSWORD: verYs3cret
ports:
- "5432:5432"
volumes:
- "qtt-postgres:/var/lib/postgresql"
volumes:
qtt-redis:
qtt-postgres:
qtt-mssql: