-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (40 loc) · 893 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (40 loc) · 893 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
version: '3'
services:
database:
image: docker.io/postgres
environment:
- POSTGRES_USER=ipxeblue
- POSTGRES_PASSWORD=thisisnotapassword
- POSTGRES_DB=ipxeblue
volumes:
- ./.podman-data/postgres:/var/lib/postgresql/data
ports:
- 5432:5432
minio:
image: docker.io/minio/minio
volumes:
- ./.podman-data/minio:/data
ports:
- 9000:9000
environment:
MINIO_ACCESS_KEY: minio
MINIO_SECRET_KEY: minio123
command: server /data
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:9000/minio/health/live" ]
interval: 30s
timeout: 20s
retries: 3
webui:
image: docker.io/node:lts-buster
working_dir: /webui
volumes:
- ./webui:/webui
command: "yarn start"
ports:
- 3000:3000
#volumes:
# db-data:
# driver: local
# data:
# driver: local