-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
51 lines (46 loc) · 1.23 KB
/
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:
# mongo:
# image: mongo:5.0.2
# restart: 'unless-stopped'
# ports:
# - '27018:27017'
# environment:
# MONGO_INITDB_ROOT_USERNAME: adminvotepat
# MONGO_INITDB_ROOT_PASSWORD: TlW1WnLlxhnPxISQ
# volumes:
# - mongodb_typescript_backend_toolkit:/data/db
redis:
image: redis:latest
ports:
- 6379:6379
volumes:
- redis_typescript_backend_toolkit:/data
# postgres:
# image: postgres:15
# environment:
# POSTGRES_USER: postgres.geifwkmjrthkhreivloa
# POSTGRES_PASSWORD: JXk6SPED0RRqMhO7
# POSTGRES_DB: postgres
# ports:
# - 6543
# # - 5432:5432
# volumes:
# - postgres_typescript_backend_toolkit:/var/lib/postgresql/data
# postgres:
# image: postgres:15
# environment:
# POSTGRES_USER: postgres.geifwkmjrthkhreivloa
# POSTGRES_PASSWORD: JXk6SPED0RRqMhO7
# POSTGRES_DB: postgres
# ports:
# - 5432:5432
# volumes:
# - postgres_typescript_backend_toolkit:/var/lib/postgresql/data
volumes:
# mongodb_typescript_backend_toolkit:
# external: true
redis_typescript_backend_toolkit:
external: true
# postgres_typescript_backend_toolkit:
# external: true