forked from AVDW/csc301-todoserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
51 lines (45 loc) · 877 Bytes
/
docker-compose.yml
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
41
42
43
44
45
46
47
48
49
50
51
version: '3.9'
services:
myFirstDB:
image: postgres
restart: always
ports:
- 5432:5432
volumes:
- ./testFolder:/usr/src/app
environment:
POSTGRES_PASSWORD: password
Redis:
image: redis
restart: always
ports:
- 6379:6379
dbCouch:
image: couchdb
restart: always
ports:
- 5984:5984
environment:
COUCHDB_USER: iamuser
COUCHDB_PASSWORD: password
dbSQL:
image: mcr.microsoft.com/mssql/server:2019-latest
restart: always
ports:
- 1433:1433
environment:
ACCEPT_EULA: Y
SA_PASSWORD: yourStrong(!)Password
MSSQL_PID: Express
nodejsserver:
image: node:22-alpine
restart: always
ports:
- 3333:5657
volumes:
- ./webappfiles:/usr/src/app
adminer:
image: adminer
restart: always
ports:
- 8080:8080