remove reference to build targets that no longer exist.
This commit is contained in:
parent
a4af28cabf
commit
ada9640a97
3 changed files with 2 additions and 5 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
ARG MARIADB_VERSION=10.9
|
ARG MARIADB_VERSION=10.9
|
||||||
FROM mariadb:$MARIADB_VERSION AS mysql
|
FROM mariadb:$MARIADB_VERSION
|
||||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
ENV DEBIAN_FRONTEND="teletype" \
|
ENV DEBIAN_FRONTEND="teletype" \
|
||||||
TERM=xterm-256color \
|
TERM=xterm-256color \
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
ARG PGSQL_VERSION
|
ARG PGSQL_VERSION
|
||||||
FROM postgres:$PGSQL_VERSION-alpine AS postgres
|
FROM postgres:$PGSQL_VERSION-alpine
|
||||||
RUN apk add --no-cache runit && \
|
RUN apk add --no-cache runit && \
|
||||||
apk --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/edge/main add \
|
apk --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/edge/main add \
|
||||||
icu-libs \
|
icu-libs \
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,6 @@ services:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile.postgres
|
dockerfile: Dockerfile.postgres
|
||||||
target: postgres
|
|
||||||
args:
|
args:
|
||||||
PGSQL_VERSION: 14
|
PGSQL_VERSION: 14
|
||||||
environment:
|
environment:
|
||||||
|
|
@ -49,7 +48,6 @@ services:
|
||||||
image: benzine/mysql:10.9
|
image: benzine/mysql:10.9
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
target: mysql
|
|
||||||
dockerfile: Dockerfile.mariadb
|
dockerfile: Dockerfile.mariadb
|
||||||
args:
|
args:
|
||||||
MARIADB_VERSION: 10.9
|
MARIADB_VERSION: 10.9
|
||||||
|
|
@ -75,7 +73,6 @@ services:
|
||||||
image: benzine/mysql:10.3
|
image: benzine/mysql:10.3
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
target: mysql
|
|
||||||
dockerfile: Dockerfile.mariadb
|
dockerfile: Dockerfile.mariadb
|
||||||
args:
|
args:
|
||||||
MARIADB_VERSION: 10.3
|
MARIADB_VERSION: 10.3
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue