forked from getfider/fider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (37 loc) · 834 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (37 loc) · 834 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
version: "3"
services:
smtp:
image: mailhog/mailhog:latest
ports:
- "8026:8025"
- "1026: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.2018-12-06T01-27-43Z
ports:
- "9000:9000"
environment:
MINIO_ACCESS_KEY: s3user
MINIO_SECRET_KEY: s3user-s3cr3t
command: server /data