Project

General

Profile

Docker » History » Version 68

Carsten Rose, 18.04.2023 14:34

1 1 Benjamin Baer
h1. Docker
2 15 Benjamin Baer
3 29 Carsten Rose
{{toc}}
4 28 Carsten Rose
5 26 Carsten Rose
Handout
6
7 38 Carsten Rose
| *Topic* | *Description* |
8 58 Carsten Rose
| GIT Repo ssh | @git@systemvcs.math.uzh.ch:it/typo3-docker.git@ |
9
| GIT Repo http | @https://systemvcs.math.uzh.ch/it/typo3-docker.git@ |
10 56 Carsten Rose
| Docker Host | @webwork20@ - alle Befehle werden als `root` ausgefuehrt | 
11 51 Carsten Rose
| Docker Verzeichnis | @/var/docker/<username>@ |
12 52 Carsten Rose
| Konfiguration / Ports | @/var/docker/<username>/<username_instancename>/config.json @ |
13 64 Carsten Rose
| Save in kpdev | @Root > webwork20 > webwork20/crose_qfq [docker]@ |
14 51 Carsten Rose
| T3 FE, xdebug, PMA | @https://webwork20.math.uzh.ch:<port>@ |
15
| Start Docker | @docker compose up -d@ |
16
| Stop Docker | @docker compose down@ |
17 60 Carsten Rose
| *Update Docker Image* | @docker compose down; git pull; docker compose build; docker compose up -d@ |
18 54 Carsten Rose
19 26 Carsten Rose
20
21 1 Benjamin Baer
<pre>
22 21 Carsten Rose
[root@webwork20]
23
24
$ cd /var/docker/
25 40 Carsten Rose
$ mkdir <username>
26 1 Benjamin Baer
$ cd /var/docker/<username>
27
28 59 Carsten Rose
# Checkout git repo - decide to if you like to use 'http' or 'ssh'. 
29
# You can change later, check: https://wiki.math.uzh.ch/public/Git#Change_Repo:_http_.3E_ssh
30 58 Carsten Rose
31
# http: you have to specify username/password for every remote GIT action.
32 1 Benjamin Baer
$ git clone https://systemvcs.math.uzh.ch/it/typo3-docker.git <username_instancename>
33 58 Carsten Rose
34
# ssh: username/password is given automatically, login  via ssh-agent forward: ssh -A root@webwork20
35 61 Carsten Rose
$ git clone git@systemvcs.math.uzh.ch:it/typo3-docker.git <username_instancename>
36 58 Carsten Rose
37
# Main Branch ist Typo3 V10
38 37 Carsten Rose
39 39 Carsten Rose
# In case T3 V11 should be used
40 21 Carsten Rose
$ git checkout typo11
41
42 40 Carsten Rose
$ cd /var/docker/<username>/<username_instancename>
43 21 Carsten Rose
44 66 Carsten Rose
# Create docker images and prepare nginx, mariadb, pma
45 21 Carsten Rose
# execute bootstrap.py
46
$ python3 bootstrap.py
47 66 Carsten Rose
....
48
⠿ Network crose1_dev_default      Created                                                                                               0.1s
49
⠿ Container crose1_dev-mariadb-1  Healthy                                                                                              16.5s
50
⠿ Container crose1_dev-pma-1      Started                                                                                              17.0s
51
⠿ Container crose1_dev-nginx-1    Started                                                                                              17.2s
52
First time install: http://webwork20:51515/typo3/install.php
53
web: http://webwork20:51515
54
pma: http://webwork20:52195
55
xdebug: 53859
56
ssh: ssh root@webwork20 -p 58785
57
58
#-------------------------------------------------------
59
# Create a keepass entry in @kpdev@ under webwork20, incl. your instance password, with the above mentioned ports!
60
#-------------------------------------------------------
61
62
#-------------------------------------------------------
63
# Configure ssh passwordless access to the nginx/php docker.
64
# If not already done before, create a personal private/public SSH keys (in thinlinc): ssh-keygen -t ed25519
65
#-------------------------------------------------------
66
67
# Transfer the public SSH key from Thinlinc to the docker on webwork20.
68
[user@tlx] cat ~/.ssh/id_ed25519.pub
69
ssh-ed25519 AAA... 
70
71
# Copy/paste the key on webwork20
72
[root@webwork20] vim ssh/authorized_keys
73
74
# Test the password less login ... accept the new SSH hostkey.
75
[user@tlx] ssh root@webwork20 -p 58785
76 64 Carsten Rose
</pre>
77
78 15 Benjamin Baer
79 30 Carsten Rose
h1. Typo3 
80 22 Carsten Rose
81 67 Carsten Rose
* Open T3/BE: https://webwork20:xxxx/typo3/install.php
82 22 Carsten Rose
83 1 Benjamin Baer
!typo3_1.png!
84 22 Carsten Rose
85 1 Benjamin Baer
!typo3_2.png!
86 22 Carsten Rose
87 1 Benjamin Baer
* Choose "take me straight to the backend"
88 22 Carsten Rose
89 63 Carsten Rose
* Login > extension: add a) fluid styled content, b) typo3 edit highlighting
90 22 Carsten Rose
91
!clipboard-202303281403-ewftg.png!
92 1 Benjamin Baer
93 63 Carsten Rose
!t3editor.png!
94
95
96 22 Carsten Rose
* Install latest qfq (https://qfq.io/download/?dir=releases) and uzh_cd (https://www.math.uzh.ch/repo/?dir=uzhcd/v9)
97 15 Benjamin Baer
* Create first page:
98 24 Carsten Rose
99 1 Benjamin Baer
!typo3_4.png!
100 15 Benjamin Baer
!typo3_5.png!
101
!typo3_6.png!
102 24 Carsten Rose
103 15 Benjamin Baer
* Under access, set page visible to true
104
* Add template to home (via plus):
105 1 Benjamin Baer
!typo3_7_t1.png!
106 16 Benjamin Baer
!typo3_7_t2.png!
107
!typo3_7_t3.png!
108
109
* Add page content > QFQ to home
110
111
!qfq_1.png!
112
113
<pre>
114
10.sql = SELECT "Hello world from QFQ, ", NOW()
115
</pre>
116
117
* Try view page on home for a first test:
118
!qfq2.png!
119
120
* As instructed, create a new page "Form" with pagecontent [QFQ] Form under Home and load the formEditor:
121
<pre>
122
file=_formEditor
123 18 Enis Nuredini
</pre>
124
125
* Reload the page
126 17 Benjamin Baer
!qfq3.png!
127 1 Benjamin Baer
128 17 Benjamin Baer
* Done with typo3!
129
130 30 Carsten Rose
h1. PhpStorm
131 17 Benjamin Baer
132 65 Carsten Rose
* *Replace* the following ports with yours!
133
134
| First time install | http://webwork20:51515/typo3/install.php |
135
| web | http://webwork20:51515 |
136
| pma | http://webwork20:52195 |
137
| xdebug | 53859 |
138
| ssh | ssh root@webwork20 -p 58785 |
139
140
141 43 Carsten Rose
* You need the url of the page AND the xdebug port from the installation. If you do not remember them, check @/var/docker/<username>/<username_instancename>/config.json@.
142 31 Carsten Rose
* PhpStorm: @File > Settings > PHP > Debug@
143
144 68 Carsten Rose
!01-xdebug.png!
145 31 Carsten Rose
146 17 Benjamin Baer
* List all of the xdebug ports of your docker containers, comma separated. REMOVE 9000, else phpstorm will still stop webwork16.
147 1 Benjamin Baer
* Add Server:
148 31 Carsten Rose
149 1 Benjamin Baer
!xdebug2.png!
150 31 Carsten Rose
151 17 Benjamin Baer
** Please give a detailed name, eg. webwork20 dev, there will be multiple deployments on the same server!
152
** Use the port for the website, not the xdebug port!
153
** You can already map the path of extension > /var/www/html/typo3conf/ext/qfq/
154 1 Benjamin Baer
** You may not see the typo3 sources:
155 31 Carsten Rose
156 1 Benjamin Baer
!xdebug3.png!
157 31 Carsten Rose
158 17 Benjamin Baer
** If you see it, map typo3_src_10.4.34 to /var/www/typo3_src (see screenshot)
159 1 Benjamin Baer
** If not, add additional sources to your phpstorm project, then do above:
160 31 Carsten Rose
161 1 Benjamin Baer
!xdebug4.png!
162 31 Carsten Rose
163 17 Benjamin Baer
*** Got to File > Settings > Directories and Add new Root Directory
164
*** Add /scratch/software/typo3
165
*** Mark typo3_src_10.4.34 as Source Folder (also extension in the qfq folder, if you haven't)
166 1 Benjamin Baer
* Finally add a new xdebug setting:
167 31 Carsten Rose
168 17 Benjamin Baer
!xdebug5.png!
169 1 Benjamin Baer
!xdebug6.png!
170 31 Carsten Rose
171 17 Benjamin Baer
** Here you can select the server you added before
172
** Remove webwork16 if you didn't remove port 9000, to not stop webwork16 by accident.
173
* Deployment path:
174 32 Carsten Rose
** Tools > Deployment > Configuration
175 31 Carsten Rose
176 17 Benjamin Baer
!xdebug7.png!
177 33 Carsten Rose
178
!clipboard-202303281446-d1okl.png!
179
180 19 Benjamin Baer
!xdebug8.png!
181 30 Carsten Rose
182 34 Carsten Rose
* Wenn gewuenscht kann der automatische Upload aktiviert werden:
183
184
!clipboard-202303281501-vsrv2.png!
185
186 49 Carsten Rose
h1. Tipps
187
188 50 Carsten Rose
* If the FormEditor is broken and has problems to show note.gif, the baseUrl is probably not configure in QFQ setup.
189 49 Carsten Rose
* Configure correct Site entry point
190
191
!clipboard-202304081911-mfwna.png!
192
193 1 Benjamin Baer
h1. Issues
194
195 36 Carsten Rose
* #15745
196 62 Carsten Rose
197
h1. PHPUnit Tests