-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (41 loc) · 864 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (41 loc) · 864 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
41
42
43
services:
websocket:
build:
context: ./inicio-ws/
ports:
- "1234:1234"
environment:
JWT_SECRET: inicio
HOST: 0.0.0.0
PORT: 1234
db:
image: postgres:17
restart: always
ports:
- "5432:5432"
environment:
POSTGRES_USER: inicio
POSTGRES_PASSWORD: inicio
POSTGRES_DB: inicio-db
volumes:
- pgdata-inicio:/var/lib/postgresql/data
s3:
image: "quay.io/minio/minio:latest"
command: 'server /data --console-address ":9001"'
environment:
- MINIO_ROOT_USER=inicio
- MINIO_ROOT_PASSWORD=inicio123
volumes:
- "minio_data:/data"
ports:
- 9000:9000 # S3
- 9001:9001 # UI
mailpit:
image: axllent/mailpit
container_name: tts-mailpit
ports:
- "1025:1025"
- "8025:8025"
volumes:
pgdata-inicio:
minio_data: