This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
generated from AMRC-FactoryPlus/acs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
101 lines (101 loc) · 2.33 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# For more information: https://laravel.com/docs/sail
version: '3'
services:
backend:
image: ghcr.io/amrc-factoryplus/acs-manager:main-backend
ports:
- '9000:9000'
user: www-data
volumes:
- './krb5.conf:/etc/krb5.conf'
- './k3s.yaml:/k3s.yaml'
- './keytab:/keytab'
- '.:/app'
networks:
- sail
frontend:
image: ghcr.io/amrc-factoryplus/acs-manager:main-frontend
volumes:
- '.docker/app/nginx.conf.dev:/etc/nginx/nginx.conf'
- '.:/app'
ports:
- '8080:8080'
networks:
- sail
pgsql:
image: 'postgres:15'
ports:
- '5432:5432'
environment:
POSTGRES_DB: 'factoryplus-manager'
POSTGRES_PASSWORD: 'password'
volumes:
- 'sail-pgsql:/var/lib/postgresql/data'
networks:
- sail
healthcheck:
test:
- CMD
- pg_isready
- '-q'
- '-d'
- '${DB_DATABASE}'
- '-U'
- '${DB_USERNAME}'
retries: 3
timeout: 5s
meilisearch:
# image: 'getmeili/meilisearch:v0.30.0'
image: 'metamehta/meilisearch-arm64'
ports:
- '${FORWARD_MEILISEARCH_PORT:-7700}:7700'
volumes:
- 'sail-meilisearch:/data.ms'
networks:
- sail
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:7700/health"]
retries: 3
timeout: 5s
minio:
image: 'minio/minio:latest'
environment:
MINIO_ROOT_USER: 'sail'
MINIO_ROOT_PASSWORD: 'password'
ports:
- '9090:9000'
- '8900:8900'
volumes:
- 'sail-minio:/data/minio'
networks:
- sail
command: minio server /data/minio --console-address ":8900"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
retries: 3
timeout: 5s
createminiobuckets:
image: minio/mc
depends_on:
- minio
entrypoint: >
/bin/sh -c "
sleep 5;
/usr/bin/mc alias set factoryplus-manager http://minio:9000 sail password
&& mc mb factoryplus-manager/schemas
&& mc mb factoryplus-manager/device-connections
&& mc mb factoryplus-manager/device-configurations
exit 0;
"
networks:
- sail
networks:
sail:
driver: bridge
volumes:
sail-meilisearch:
driver: local
sail-minio:
driver: local
sail-pgsql:
driver: local