FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
httpsms/docker-compose.yml at main · blacdev/httpsms · GitHub
blacdev
/
httpsms
Public
forked from
NdoleStudio/httpsms
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
httpsms
/
docker-compose.yml
Copy path
More file actions
More file actions
Latest commit
History
History
History
55 lines (50 loc) · 1000 Bytes
Breadcrumbs
httpsms
/
docker-compose.yml
Copy path
File metadata and controls
55 lines (50 loc) · 1000 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
version
:
"
3.8
"
services
:
postgres
:
image
:
postgres:alpine
environment
:
POSTGRES_DB
:
httpsms
POSTGRES_PASSWORD
:
dbpassword
POSTGRES_USER
:
dbusername
volumes
:
-
postgres:/var/lib/postgresql/data
ports
:
-
"
5435:5432
"
restart
:
on-failure
healthcheck
:
test
:
["CMD-SHELL", "pg_isready", "-U", "dbusername", "-d", "httpsms"]
interval
:
30s
timeout
:
60s
retries
:
5
start_period
:
5s
redis
:
image
:
redis:latest
command
:
redis-server
volumes
:
-
redis:/var/lib/redis
ports
:
-
"
6379:6379
"
restart
:
on-failure
api
:
build
:
context
:
./api
ports
:
-
"
8000:8000
"
depends_on
:
postgres
:
condition
:
service_healthy
redis
:
condition
:
service_started
env_file
:
-
./api/.env
web
:
build
:
context
:
./web
ports
:
-
"
3000:3000
"
depends_on
:
api
:
condition
:
service_started
volumes
:
redis
:
postgres
:
Back
|
FazBrowse Home
|
New Git URL