Project

General

Profile

Docker » History » Version 61

Carsten Rose, 14.04.2023 13:32

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 51 Carsten Rose
| T3 FE, xdebug, PMA | @https://webwork20.math.uzh.ch:<port>@ |
14
| Start Docker | @docker compose up -d@ |
15
| Stop Docker | @docker compose down@ |
16 60 Carsten Rose
| *Update Docker Image* | @docker compose down; git pull; docker compose build; docker compose up -d@ |
17 54 Carsten Rose
18 26 Carsten Rose
19
20 1 Benjamin Baer
<pre>
21 21 Carsten Rose
[root@webwork20]
22
23
$ cd /var/docker/
24 40 Carsten Rose
$ mkdir <username>
25 1 Benjamin Baer
$ cd /var/docker/<username>
26
27 59 Carsten Rose
# Checkout git repo - decide to if you like to use 'http' or 'ssh'. 
28
# You can change later, check: https://wiki.math.uzh.ch/public/Git#Change_Repo:_http_.3E_ssh
29 58 Carsten Rose
30
# http: you have to specify username/password for every remote GIT action.
31 1 Benjamin Baer
$ git clone https://systemvcs.math.uzh.ch/it/typo3-docker.git <username_instancename>
32 58 Carsten Rose
33
# ssh: username/password is given automatically, login  via ssh-agent forward: ssh -A root@webwork20
34 61 Carsten Rose
$ git clone git@systemvcs.math.uzh.ch:it/typo3-docker.git <username_instancename>
35 58 Carsten Rose
36
# Main Branch ist Typo3 V10
37 37 Carsten Rose
38 39 Carsten Rose
# In case T3 V11 should be used
39 21 Carsten Rose
$ git checkout typo11
40
41 40 Carsten Rose
$ cd /var/docker/<username>/<username_instancename>
42 21 Carsten Rose
43
# execute bootstrap.py
44
$ python3 bootstrap.py
45 1 Benjamin Baer
</pre>
46 15 Benjamin Baer
47 30 Carsten Rose
h1. Typo3 
48 22 Carsten Rose
49
* Save personal links and ports. Best in @kpweb: webwork20/<user>@
50
* Open mentioned T3/BE: https://webwork20:xxxx/typo3/install.php
51
52 1 Benjamin Baer
!typo3_1.png!
53 22 Carsten Rose
54 1 Benjamin Baer
!typo3_2.png!
55 22 Carsten Rose
56 1 Benjamin Baer
* Choose "take me straight to the backend"
57 22 Carsten Rose
58 24 Carsten Rose
* Login > extension: add fluid styled content:
59 22 Carsten Rose
60
!clipboard-202303281403-ewftg.png!
61 1 Benjamin Baer
62 22 Carsten Rose
* Install latest qfq (https://qfq.io/download/?dir=releases) and uzh_cd (https://www.math.uzh.ch/repo/?dir=uzhcd/v9)
63 15 Benjamin Baer
* Create first page:
64 24 Carsten Rose
65 1 Benjamin Baer
!typo3_4.png!
66 15 Benjamin Baer
!typo3_5.png!
67
!typo3_6.png!
68 24 Carsten Rose
69 15 Benjamin Baer
* Under access, set page visible to true
70
* Add template to home (via plus):
71 1 Benjamin Baer
!typo3_7_t1.png!
72 16 Benjamin Baer
!typo3_7_t2.png!
73
!typo3_7_t3.png!
74
75
* Add page content > QFQ to home
76
77
!qfq_1.png!
78
79
<pre>
80
10.sql = SELECT "Hello world from QFQ, ", NOW()
81
</pre>
82
83
* Try view page on home for a first test:
84
!qfq2.png!
85
86
* As instructed, create a new page "Form" with pagecontent [QFQ] Form under Home and load the formEditor:
87
<pre>
88
file=_formEditor
89
</pre>
90
91 1 Benjamin Baer
* Reload the page
92 18 Enis Nuredini
!qfq3.png!
93
94
* Activate typo3 edit highlighting
95 17 Benjamin Baer
!t3editor.png!
96 1 Benjamin Baer
97 17 Benjamin Baer
* Done with typo3!
98
99 30 Carsten Rose
h1. PhpStorm
100 17 Benjamin Baer
101 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@.
102 31 Carsten Rose
* PhpStorm: @File > Settings > PHP > Debug@
103
104 1 Benjamin Baer
!xdebug1.png!
105 31 Carsten Rose
106 17 Benjamin Baer
* List all of the xdebug ports of your docker containers, comma separated. REMOVE 9000, else phpstorm will still stop webwork16.
107 1 Benjamin Baer
* Add Server:
108 31 Carsten Rose
109 1 Benjamin Baer
!xdebug2.png!
110 31 Carsten Rose
111 17 Benjamin Baer
** Please give a detailed name, eg. webwork20 dev, there will be multiple deployments on the same server!
112
** Use the port for the website, not the xdebug port!
113
** You can already map the path of extension > /var/www/html/typo3conf/ext/qfq/
114 1 Benjamin Baer
** You may not see the typo3 sources:
115 31 Carsten Rose
116 1 Benjamin Baer
!xdebug3.png!
117 31 Carsten Rose
118 17 Benjamin Baer
** If you see it, map typo3_src_10.4.34 to /var/www/typo3_src (see screenshot)
119 1 Benjamin Baer
** If not, add additional sources to your phpstorm project, then do above:
120 31 Carsten Rose
121 1 Benjamin Baer
!xdebug4.png!
122 31 Carsten Rose
123 17 Benjamin Baer
*** Got to File > Settings > Directories and Add new Root Directory
124
*** Add /scratch/software/typo3
125
*** Mark typo3_src_10.4.34 as Source Folder (also extension in the qfq folder, if you haven't)
126 1 Benjamin Baer
* Finally add a new xdebug setting:
127 31 Carsten Rose
128 17 Benjamin Baer
!xdebug5.png!
129 1 Benjamin Baer
!xdebug6.png!
130 31 Carsten Rose
131 17 Benjamin Baer
** Here you can select the server you added before
132
** Remove webwork16 if you didn't remove port 9000, to not stop webwork16 by accident.
133
* Deployment path:
134 32 Carsten Rose
** Tools > Deployment > Configuration
135 31 Carsten Rose
136 17 Benjamin Baer
!xdebug7.png!
137 33 Carsten Rose
138
!clipboard-202303281446-d1okl.png!
139
140 19 Benjamin Baer
!xdebug8.png!
141 30 Carsten Rose
142 34 Carsten Rose
* Wenn gewuenscht kann der automatische Upload aktiviert werden:
143
144
!clipboard-202303281501-vsrv2.png!
145
146 49 Carsten Rose
h1. Tipps
147
148 50 Carsten Rose
* If the FormEditor is broken and has problems to show note.gif, the baseUrl is probably not configure in QFQ setup.
149 49 Carsten Rose
* Configure correct Site entry point
150
151
!clipboard-202304081911-mfwna.png!
152
153 1 Benjamin Baer
h1. Issues
154
155 36 Carsten Rose
* #15745