Skip to content

Commit

Permalink
stick to client 10.11 version
Browse files Browse the repository at this point in the history
  • Loading branch information
fradelg committed Dec 8, 2024
1 parent d5d98e5 commit dc253cd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
18 changes: 9 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ ENV GO111MODULE=on
RUN go mod tidy
RUN CGO_ENABLED=0 GOOS=linux GO111MODULE=on go build -a -o /go/bin/dockerize .

FROM alpine:3.21.0
FROM alpine:3.20.3
LABEL maintainer "Fco. Javier Delgado del Hoyo <[email protected]>"

RUN apk add --update \
tzdata \
bash \
mysql-client \
gzip \
openssl \
mariadb-connector-c \
fdupes && \
tzdata \
bash \
gzip \
openssl \
mysql-client=~10.11 \
mariadb-connector-c \
fdupes && \
rm -rf /var/cache/apk/*

COPY --from=binary /go/bin/dockerize /usr/local/bin
Expand All @@ -43,6 +43,6 @@ RUN mkdir /backup && \
VOLUME ["/backup"]

HEALTHCHECK --interval=2s --retries=1800 \
CMD stat /HEALTHY.status || exit 1
CMD stat /HEALTHY.status || exit 1

CMD dockerize -wait tcp://${MYSQL_HOST}:${MYSQL_PORT} -timeout ${TIMEOUT} /run.sh
11 changes: 6 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
version: "2"
services:
mariadb:
image: mariadb:10
image: mariadb:10.11
container_name: my_mariadb
security_opt:
- seccomp:unconfined
expose:
- 3306
volumes:
Expand All @@ -14,7 +15,7 @@ services:
- MYSQL_ALLOW_EMPTY_ROOT_PASSWORD=yes
restart: unless-stopped
healthcheck:
test: ["CMD", "healthcheck.sh", "--su-mysql", "--connect"]
test: [ "CMD", "healthcheck.sh", "--su-mysql", "--connect" ]
timeout: 5s
retries: 10

Expand All @@ -34,6 +35,6 @@ services:
- INIT_BACKUP=1
- CRON_TIME=0 0 * * *
restart: unless-stopped
volumes:

volumes:
data:

0 comments on commit dc253cd

Please sign in to comment.