-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
41 lines (41 loc) · 937 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
version: "3"
services:
smtp:
image: mailhog/mailhog:latest
restart: always
ports:
- "8025:8025"
- "1025:1025"
pgdev:
container_name: fider_pgdev
restart: always
image: postgres:12
volumes:
- ./data/postgres:/var/lib/postgresql/data
ports:
- "5555:5432"
environment:
POSTGRES_USER: fider
POSTGRES_PASSWORD: fider_pw
pgtest:
container_name: fider_pgtest
restart: always
image: postgres:12
ports:
- "5566:5432"
environment:
POSTGRES_USER: fider_test
POSTGRES_PASSWORD: fider_test_pw
s3test:
container_name: fider_s3test
restart: always
image: minio/minio:RELEASE.2021-07-27T02-40-15Z
ports:
- "9000:9000"
- "9001:9001"
volumes:
- ./data/s3:/data
environment:
MINIO_ACCESS_KEY: s3user
MINIO_SECRET_KEY: s3user-s3cr3t
command: server /data --console-address ":9001"