FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
adminer/docker-compose.yml at master · dockette/adminer · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
dockette
/
adminer
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
33
Star
94
Code
Issues
0
Pull requests
2
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
adminer
/
docker-compose.yml
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (41 loc) · 1.18 KB
Breadcrumbs
adminer
/
docker-compose.yml
Copy path
File metadata and controls
43 lines (41 loc) · 1.18 KB
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
services
:
adminer
:
build
:
context
:
.
dockerfile
:
adminer-full/Dockerfile
ports
:
-
"
8080:80
"
environment
:
#
Plugin: server-list (dropdown with Auto Sign-In button)
ADMINER_PLUGIN_SERVER_LIST
:
"
1
"
ADMINER_SERVERS_MariaDB
:
"
server://root:root@mariadb:3306/testdb
"
ADMINER_SERVERS_PostgreSQL
:
"
pgsql://root:root@postgres:5432/testdb
"
#
Plugin: autologin (skips login form, takes precedence)
#
ADMINER_PLUGIN_AUTOLOGIN: "1"
#
ADMINER_AUTOLOGIN_SERVER: "server://root:root@mariadb:3306/testdb"
depends_on
:
mariadb
:
condition
:
service_healthy
postgres
:
condition
:
service_healthy
mariadb
:
image
:
mariadb:11
environment
:
MARIADB_ROOT_PASSWORD
:
root
MARIADB_DATABASE
:
testdb
healthcheck
:
test
:
["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
interval
:
5s
timeout
:
3s
retries
:
10
postgres
:
image
:
postgres:17-alpine
environment
:
POSTGRES_USER
:
root
POSTGRES_PASSWORD
:
root
POSTGRES_DB
:
testdb
healthcheck
:
test
:
["CMD-SHELL", "pg_isready -U root -d testdb"]
interval
:
5s
timeout
:
3s
retries
:
10
Back
|
FazBrowse Home
|
New Git URL