-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
52 lines (49 loc) · 1.08 KB
/
compose.yaml
File metadata and controls
52 lines (49 loc) · 1.08 KB
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
52
services:
chat-server:
container_name: svchat-server
image: ghcr.io/arithefirst/svchat
environment:
- NODE_ENV=docker_production
- ORIGIN=http://localhost:3000
- CASSANDRA_USER=admin
- CASSANDRA_PASSWORD=admin
- MINIO_ROOT_USER=minioadmin
- MINIO_ROOT_PASSWORD=minioadmin
ports:
- 3000:3000
depends_on:
- cassandra
volumes:
- svchat-users:/app/src/lib/server/db
cassandra:
container_name: svchat-db
image: cassandra
restart: always
ports:
- 9042:9042
environment:
# CHANGEME
- CASSANDRA_USER=admin
- CASSANDRA_PASSWORD=admin
volumes:
- svchat-cassandra:/var/lib/cassandra
minio:
container_name: svchat-s3
image: docker.io/bitnami/minio
restart: always
ports:
- 9000:9000
- 9001:9001
environment:
# CHANGEME
- MINIO_ROOT_USER=minioadmin
- MINIO_ROOT_PASSWORD=minioadmin
volumes:
- svchat-s3:/data
volumes:
svchat-cassandra:
driver: local
svchat-s3:
driver: local
svchat-users:
driver: local