This repository was archived by the owner on Apr 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprod.docker-compose.yml
More file actions
85 lines (83 loc) · 1.84 KB
/
prod.docker-compose.yml
File metadata and controls
85 lines (83 loc) · 1.84 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
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
version: "3"
services:
webapp:
container_name: sera-webapp
image: destcom/sera-web
ports:
- "6663:80"
restart: on-failure
networks:
- sail
- monolith
- hosted
depends_on:
- sera-server
sera-server:
container_name: sera-server
image: destcom/sera-server
user: "${WWWUSER:-1000}:${WWWGROUP:-1000}"
ports:
- "6664:80"
restart: on-failure
networks:
- sail
- monolith
- hosted
depends_on:
- minio
- mariadb
- soketi
mariadb:
container_name: sera-mariadb
image: "mariadb:10"
restart: on-failure
environment:
MYSQL_ROOT_PASSWORD: "${DB_PASSWORD}"
MYSQL_ROOT_HOST: "%"
MYSQL_DATABASE: "${DB_DATABASE}"
MYSQL_USER: "${DB_USERNAME}"
MYSQL_PASSWORD: "${DB_PASSWORD}"
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
networks:
- sail
healthcheck:
test:
- CMD
- mysqladmin
- ping
- "-p${DB_PASSWORD}"
retries: 3
timeout: 5s
soketi:
container_name: sera-soketi
image: "quay.io/soketi/soketi:latest-16-alpine"
restart: on-failure
environment:
SOKETI_DEBUG: "${SOKETI_DEBUG:-1}"
SOKETI_METRICS_SERVER_PORT: "9601"
SOKETI_DEFAULT_APP_ID: "${PUSHER_APP_ID}"
SOKETI_DEFAULT_APP_KEY: "${PUSHER_APP_KEY}"
SOKETI_DEFAULT_APP_SECRET: "${PUSHER_APP_SECRET}"
networks:
- sail
- monolith
minio:
container_name: sera-minio
image: docker.io/bitnami/minio:2023
restart: on-failure
environment:
MINIO_ROOT_USER: "${MINIO_ROOT_USER:-s3SeraUser}"
MINIO_ROOT_PASSWORD: "${MINIO_ROOT_PASSWORD:-SsmHJPoqd}"
networks:
- sail
- monolith
- hosted
depends_on:
- mariadb
networks:
sail:
driver: bridge
monolith:
driver: bridge
hosted:
external: true