FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaSecLab/docker-compose.yml at main · FuckingAwsomeCodeAuditor/JavaSecLab · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
FuckingAwsomeCodeAuditor
/
JavaSecLab
Public
forked from
whgojp/JavaSecLab
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
JavaSecLab
/
docker-compose.yml
Copy path
More file actions
More file actions
Latest commit
History
History
History
52 lines (50 loc) · 1.08 KB
Breadcrumbs
JavaSecLab
/
docker-compose.yml
Copy path
File metadata and controls
52 lines (50 loc) · 1.08 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
44
45
46
47
48
49
50
51
52
version
:
"
3
"
services
:
mysql
:
image
:
mysql:8.0.33
container_name
:
Container-MYSQL8
restart
:
always
ports
:
-
3306:3306
environment
:
MYSQL_ROOT_PASSWORD
:
QWE123qwe
MYSQL_DATABASE
:
JavaSecLab
volumes
:
-
./sql/JavaSecLab.sql:/docker-entrypoint-initdb.d/JavaSecLab.sql
networks
:
-
JavaSecLabNet
JavaSecLab
:
image
:
javaseclab:1.0
container_name
:
Container-JavaSecLab
restart
:
always
build
:
.
ports
:
-
80:80
-
8080:8080
-
9090:9090
environment
:
-
TZ=Asia/Shanghai
#
设置时区为上海(GMT+8)
depends_on
:
-
mysql
volumes
:
-
./logs:/logs
#
记录日志信息
networks
:
-
JavaSecLabNet
#
密码 admin@portainer.com
portainer
:
image
:
portainer/portainer-ce
container_name
:
portainer
restart
:
always
ports
:
-
9000:9000
-
18001:8080
volumes
:
-
/var/run/docker.sock:/var/run/docker.sock
networks
:
-
JavaSecLabNet
networks
:
JavaSecLabNet
:
driver
:
bridge
ipam
:
config
:
-
subnet
:
192.168.1.0/24
Back
|
FazBrowse Home
|
New Git URL