Skip to content

Commit c4a7657

Browse files
committed
docker php
1 parent f4cd7a2 commit c4a7657

File tree

185 files changed

+78967
-18
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

185 files changed

+78967
-18
lines changed

.DS_Store

0 Bytes
Binary file not shown.

Docker/.DS_Store

10 KB
Binary file not shown.

Docker/Databases/docker-compose.yaml

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
version: '3.8'
2+
services:
3+
mysql:
4+
image: mysql:latest
5+
command: --default-authentication-plugin=mysql_native_password --event-scheduler=ON
6+
restart: always
7+
environment:
8+
MYSQL_ROOT_PASSWORD: nofichito
9+
MYSQL_DATABASE: milcolockers
10+
MYSQL_USER: locker
11+
MYSQL_PASSWORD: nofichito
12+
ports:
13+
- 3306:3306
14+
- 33060:33060
15+
volumes:
16+
- mysqlv:/var/lib/mysql
17+
postgresql:
18+
image: postgres:latest
19+
restart: always
20+
environment:
21+
POSTGRES_USER: pgdb
22+
POSTGRES_PASSWORD: defasecretpass
23+
ports:
24+
- 5432:5432
25+
pgadmin:
26+
image: dpage/pgadmin4
27+
restart: always
28+
ports:
29+
- 8080:80
30+
environment:
31+
- PGADMIN_DEFAULT_EMAIL=regaldo.ezequiel@gmail.com
32+
- PGADMIN_DEFAULT_PASSWORD=chichito
33+
#redis:
34+
# image: redislabs/redismod:latest
35+
# #command: redis-server --appendonly yes
36+
# restart: always
37+
# volumes:
38+
# - redisv:/data
39+
# ports:
40+
# - 6379:6379
41+
# - 16379:16379
42+
mongo:
43+
image: mongo
44+
restart: always
45+
environment:
46+
MONGO_INITDB_ROOT_USERNAME: chichito
47+
MONGO_INITDB_ROOT_PASSWORD: masterrace
48+
ports:
49+
- 27017:27017
50+
command: --quiet
51+
neo4j:
52+
image: neo4j:4.4.24-enterprise
53+
restart: unless-stopped
54+
ports:
55+
- 7476:7474
56+
- 7689:7687
57+
environment:
58+
- NEO4J_ACCEPT_LICENSE_AGREEMENT=yes
59+
- NEO4J_neo4j_bloom_license__file=/var/lib/neo4j/license/bloom-plugin.license
60+
- NEO4JLABS_PLUGINS=["graph-data-science", "apoc", "bloom", "n10s"]
61+
- NEO4J_dbms_security_procedures_whitelist=gds.*,apoc.*,bloom.*,n10s.*
62+
- NEO4J_dbms_security_procedures_unrestricted=gds.*,apoc.*,bloom.*,n10s.*
63+
- NEO4J_dbms_security_procedures_allowlist=gds.*,apoc.*,bloom.*,n10s.*
64+
- NEO4J_dbms_security_http__auth__allowlist=/,/browser.*,/bloom.*
65+
- NEO4J_dbms_unmanaged__extension__classes=com.neo4j.bloom.server=/bloom
66+
- NEO4J_neo4j_bloom_authorization__role=admin,reader,scientist,bloom
67+
- NEO4J_apoc_import_file_use__neo4j__config=true
68+
- NEO4J_apoc_import_file_enabled=true
69+
- NEO4J_dbms_allow__upgrade=true
70+
- NEO4J_cypher_lenient__create__relationship=true
71+
volumes:
72+
- ./neo4j/data:/data
73+
- ./neo4j/logs:/logs
74+
- ./neo4j/plugins:/var/lib/neo4j/plugins
75+
- ./neo4j/license:/var/lib/neo4j/license
76+
- ./neo4j/dumps/:/var/lib/neo4j/dumps/
77+
- ./neo4j/import:/var/lib/neo4j/import
78+
volumes:
79+
mysqlv:

Docker/database.compose.yml

-18
This file was deleted.

Docker/ftp/docker-compose.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version: '3.9'
2+
services:
3+
ftpd_server:
4+
image: stilliard/pure-ftpd
5+
container_name: pure-ftpd
6+
ports:
7+
- "21:21"
8+
- "30000-30009:30000-30009"
9+
volumes:
10+
# remember to replace /folder_on_disk/ with the path to where you want to store the files on the host machine
11+
- "../../Mis Videos:/home/chichito/"
12+
- "./passwd:/etc/pure-ftpd/passwd"
13+
# uncomment for ssl/tls, see https://github.com/stilliard/docker-pure-ftpd#tls
14+
# - "/folder_on_disk/ssl:/etc/ssl/private/"
15+
# or ssl/tls with Let's Encrypt (cert and key as two files)
16+
# - "/etc/letsencrypt/live/<your_server>/cert.pem:/etc/ssl/private/pure-ftpd-cert.pem"
17+
# - "/etc/letsencrypt/live/<your_server>/privkey.pem:/etc/ssl/private/pure-ftpd-key.pem"
18+
environment:
19+
PUBLICHOST: "mrswarow.sytes.net"
20+
FTP_USER_NAME: chichito
21+
FTP_USER_PASS: incorporation
22+
FTP_USER_HOME: /home/chichito
23+
# also for ssl/tls:
24+
# ADDED_FLAGS: "--tls=2"
25+
restart: always

Docker/ftp/passwd/pureftpd.passwd

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
chichito:$6$IPjVNSzu2R.rrIH0$A62sNBlIv4HRLpBIO4nrR9SzLf0fpGbVaA0h213gVSn/5ozEA73itGqw09yCcbfm9UVYp/xynMMg/5G9OcsRh1:1000:1000::/home/chichito/./::::::::::::

Docker/jellyfin/.DS_Store

6 KB
Binary file not shown.

Docker/jellyfin/docker-compose.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: '3.5'
2+
services:
3+
jellyfin:
4+
image: jellyfin/jellyfin
5+
container_name: jellyfin
6+
ports:
7+
- 8096:8096
8+
volumes:
9+
- ./config:/config
10+
- ./cache:/cache
11+
- ../../Mis Videos:/media/videos
12+
- ../../Mi música:/media/music
13+
restart: 'unless-stopped'
14+
networks:
15+
- swarow
16+
networks:
17+
swarow:
18+
external: true

Docker/lamp/docker-compose.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
services:
2+
www:
3+
image: php:8.3.15-apache
4+
ports:
5+
- 80:80
6+
volumes:
7+
- ./www:/var/www/html:rw
8+
db:
9+
image: mysql:8.0
10+
ports:
11+
- 3306:3306
12+
command: --default-authentication-plugin=mysql_native_password
13+
environment:
14+
MYSQL_DATABASE: dbname
15+
MYSQL_USER: root
16+
MYSQL_PASSWORD: test
17+
MYSQL_ROOT_PASSWORD: test
18+
volumes:
19+
- ./mysql/dump:/docker-entrypoint-initdb.d
20+
- ./mysql/conf:/etc/mysql/conf.d
21+
- ./mysql/db:/var/lib/mysql
22+
phpmyadmin:
23+
image: phpmyadmin/phpmyadmin
24+
ports:
25+
- 8000:80
26+
environment:
27+
MYSQL_USER: root
28+
MYSQL_PASSWORD: test
29+
MYSQL_ROOT_PASSWORD: test

Docker/lamp/www/chunk-DIEM2GNK.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Docker/lamp/www/chunk-S2UYQ4GM.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Docker/lamp/www/favicon.ico

14.7 KB
Binary file not shown.

Docker/lamp/www/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en" data-beasties-container="">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>2025</title>
6+
<base href="/">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="icon" type="image/x-icon" href="favicon.ico">
9+
<link rel="stylesheet" href="styles-5INURTSO.css"></head>
10+
<body ngcm="">
11+
<app-root></app-root>
12+
<link rel="modulepreload" href="chunk-DIEM2GNK.js"><script src="polyfills-FFHMD2TL.js" type="module"></script><script src="main-7MPUKREJ.js" type="module"></script></body>
13+
</html>

Docker/lamp/www/main-7MPUKREJ.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Docker/lamp/www/polyfills-FFHMD2TL.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Docker/lamp/www/saraza/index.html

+14
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
export default {
3+
basePath: '/',
4+
supportedLocales: {
5+
"en-US": ""
6+
},
7+
entryPoints: {
8+
'': () => import('./main.server.mjs')
9+
},
10+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
export default {
3+
bootstrap: () => import('./main.server.mjs').then(m => m.default),
4+
inlineCriticalCss: true,
5+
baseHref: '/',
6+
locale: undefined,
7+
routes: undefined,
8+
entryPointToBrowserMapping: {
9+
"src/app/saraza/saraza.component.ts": [
10+
{
11+
"path": "chunk-S2UYQ4GM.js",
12+
"dynamicImport": false
13+
}
14+
]
15+
},
16+
assets: {
17+
'index.csr.html': {size: 539, hash: '845618cc03df844154de715fbd79b1a2d4a5df8105ce7e65b0caf58a48e23e14', text: () => import('./assets-chunks/index_csr_html.mjs').then(m => m.default)},
18+
'index.server.html': {size: 1052, hash: '4d503f2eaeb3f576ff720866c527fe2615bb9ca42697867db796558f944083d6', text: () => import('./assets-chunks/index_server_html.mjs').then(m => m.default)},
19+
'styles-5INURTSO.css': {size: 0, hash: 'menYUTfbRu8', text: () => import('./assets-chunks/styles-5INURTSO_css.mjs').then(m => m.default)}
20+
},
21+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export default `<!doctype html>
2+
<html lang="en" data-beasties-container="">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>2025</title>
6+
<base href="/">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="icon" type="image/x-icon" href="favicon.ico">
9+
<link rel="stylesheet" href="styles-5INURTSO.css"></head>
10+
<body ngcm="">
11+
<app-root></app-root>
12+
<link rel="modulepreload" href="chunk-DIEM2GNK.js"><script src="polyfills-FFHMD2TL.js" type="module"></script><script src="main-7MPUKREJ.js" type="module"></script></body>
13+
</html>
14+
`;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
export default `<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>2025</title>
6+
<base href="/">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<link rel="icon" type="image/x-icon" href="favicon.ico">
9+
<link rel="stylesheet" href="styles-5INURTSO.css"></head>
10+
<body><script type="text/javascript" id="ng-event-dispatch-contract">(()=>{function p(t,n,r,o,e,i,f,m){return{eventType:t,event:n,targetElement:r,eic:o,timeStamp:e,eia:i,eirp:f,eiack:m}}function u(t){let n=[],r=e=>{n.push(e)};return{c:t,q:n,et:[],etc:[],d:r,h:e=>{r(p(e.type,e,e.target,t,Date.now()))}}}function s(t,n,r){for(let o=0;o<n.length;o++){let e=n[o];(r?t.etc:t.et).push(e),t.c.addEventListener(e,t.h,r)}}function c(t,n,r,o,e=window){let i=u(t);e._ejsas||(e._ejsas={}),e._ejsas[n]=i,s(i,r),s(i,o,!0)}window.__jsaction_bootstrap=c;})();
11+
</script>
12+
<app-root></app-root>
13+
<link rel="modulepreload" href="chunk-DIEM2GNK.js"><script src="polyfills-FFHMD2TL.js" type="module"></script><script src="main-7MPUKREJ.js" type="module"></script></body>
14+
</html>
15+
`;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default ``;

Docker/lamp/www/server/chunk-7BH3SQEZ.mjs

+34
Large diffs are not rendered by default.

Docker/lamp/www/server/chunk-DHVZFIWU.mjs

+76
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)