-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (44 loc) · 1.07 KB
/
docker-compose.yml
File metadata and controls
49 lines (44 loc) · 1.07 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
version: '3.8'
services:
# postgres
postgres:
image: postgres:16
environment:
- POSTGRES_USER=username
- POSTGRES_PASSWORD=password
- POSTGRES_DB=claimex-db
ports:
- "5432:5432"
volumes:
- ./services/pg/pgdata:/var/lib/postgresql/data
# pgadmin
pgadmin:
image: dpage/pgadmin4
environment:
- PGADMIN_DEFAULT_EMAIL=user@user.com
- PGADMIN_DEFAULT_PASSWORD=adminpassword
ports:
- "1234:80"
volumes:
- ./services/pgadmin/pgadmin-data:/var/lib/pgadmin
# minio
minio:
image: minio/minio
container_name: minio
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ROOT_USER: admin
MINIO_ROOT_PASSWORD: password
volumes:
- ./services/minio/minio-data:/data
command: server /data --console-address ":9001"
# searxng
searxng:
image: docker.io/searxng/searxng:latest
ports:
- "8888:8080"
volumes:
- ./services/searxng/config/:/etc/searxng/
- ./services/searxng/searxng-data/:/var/cache/searxng/