@@ -123,6 +123,84 @@ jobs:
123
123
124
124
# ---------------dev--ubuntu---start---------------------
125
125
126
+
127
+ - name : 8.3-ubuntu-php-dev-not-ssh
128
+ uses : docker/build-push-action@v3
129
+ with :
130
+ # Comma-delimited list of tags. These will be added to the registry/repository to form the image's tags
131
+ tags : |
132
+ adockero/php-nginx:8.3-ubuntu-php-dev-not-ssh
133
+ # pull: true
134
+ # push: false
135
+ push : true
136
+ context : ./
137
+ # Path to the Dockerfile (Default is '{path}/Dockerfile')
138
+ # path: ./dockerfile
139
+ file : Dockerfile.base
140
+ # Comma-delimited list of build-time variables
141
+ build-args : FROM_ARG=webdevops/php-dev:8.3
142
+ # Adds labels with git repository information to the built image
143
+ labels : true
144
+
145
+
146
+ - name : 8.3-ubuntu-php-dev-not-ssh-fpm
147
+ uses : docker/build-push-action@v3
148
+ with :
149
+ # Comma-delimited list of tags. These will be added to the registry/repository to form the image's tags
150
+ tags : |
151
+ adockero/php-nginx:8.3-ubuntu-php-dev-not-ssh-fpm
152
+ # pull: false
153
+ # push: true
154
+ push : true
155
+ context : ./
156
+ # Path to the Dockerfile (Default is '{path}/Dockerfile')
157
+ # path: ./dockerfile
158
+ file : Dockerfile.base.fpm
159
+ # Comma-delimited list of build-time variables
160
+ build-args : FROM_ARG=adockero/php-nginx:8.3-ubuntu-php-dev-not-ssh
161
+ # Adds labels with git repository information to the built image
162
+ labels : true
163
+
164
+
165
+ - name : 8.3-ubuntu-php-dev
166
+ uses : docker/build-push-action@v3
167
+ with :
168
+ # Comma-delimited list of tags. These will be added to the registry/repository to form the image's tags
169
+ tags : |
170
+ adockero/php-nginx:8.3-ubuntu-php-dev
171
+ # pull: false
172
+ # push: true
173
+ push : true
174
+ context : ./
175
+ # Path to the Dockerfile (Default is '{path}/Dockerfile')
176
+ # path: ./dockerfile
177
+ file : Dockerfile.sshd
178
+ # Comma-delimited list of build-time variables
179
+ build-args : FROM_ARG=adockero/php-nginx:8.3-ubuntu-php-dev-not-ssh-fpm
180
+ # Adds labels with git repository information to the built image
181
+ labels : true
182
+
183
+
184
+ - name : 8.3-ubuntu-php-dev-ffmpeg
185
+ uses : docker/build-push-action@v3
186
+ with :
187
+ # Comma-delimited list of tags. These will be added to the registry/repository to form the image's tags
188
+ tags : |
189
+ adockero/php-nginx:8.3-ubuntu-php-dev-ffmpeg
190
+ # pull: false
191
+ # push: true
192
+ push : true
193
+ context : ./
194
+ # Path to the Dockerfile (Default is '{path}/Dockerfile')
195
+ # path: ./dockerfile
196
+ file : Dockerfile.build-dir
197
+ # Comma-delimited list of build-time variables
198
+ build-args : |
199
+ FROM_ARG=adockero/php-nginx:8.3-ubuntu-php-dev
200
+ BUILD_SCRIPT_ARG=install-ffmpeg.sh
201
+ # Adds labels with git repository information to the built image
202
+ labels : true
203
+
126
204
# - name: 7.4-php-dev-not-ssh
127
205
# uses: docker/build-push-action@v3
128
206
# with:
0 commit comments