mirror of
https://github.com/fradelg/docker-mysql-cron-backup.git
synced 2024-11-01 00:21:46 +01:00
Merge pull request #124 from fradelg/fix/build
Fixed issues in CI testing
This commit is contained in:
commit
8a403d725b
2 changed files with 10 additions and 3 deletions
2
.github/workflows/image.yml
vendored
2
.github/workflows/image.yml
vendored
|
@ -44,7 +44,7 @@ jobs:
|
|||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
username: fradelg
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
- name: Build multiarch image
|
||||
run: |
|
||||
|
|
|
@ -2,6 +2,7 @@ version: "2"
|
|||
services:
|
||||
mariadb:
|
||||
image: mariadb:10
|
||||
container_name: my_mariadb
|
||||
expose:
|
||||
- 3306
|
||||
volumes:
|
||||
|
@ -10,17 +11,23 @@ services:
|
|||
environment:
|
||||
- MYSQL_DATABASE=${DATABASE_NAME}
|
||||
- MYSQL_ROOT_PASSWORD=${MARIADB_ROOT_PASSWORD}
|
||||
- MYSQL_ALLOW_EMPTY_ROOT_PASSWORD=yes
|
||||
restart: unless-stopped
|
||||
healthcheck:
|
||||
test: ["CMD", "healthcheck.sh", "--su-mysql", "--connect"]
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
|
||||
backup:
|
||||
build: .
|
||||
image: fradelg/mysql-cron-backup
|
||||
depends_on:
|
||||
- mariadb
|
||||
mariadb:
|
||||
condition: service_healthy
|
||||
volumes:
|
||||
- ${VOLUME_PATH}/backup:/backup
|
||||
environment:
|
||||
- MYSQL_HOST=mariadb
|
||||
- MYSQL_HOST=my_mariadb
|
||||
- MYSQL_USER=root
|
||||
- MYSQL_PASS=${MARIADB_ROOT_PASSWORD}
|
||||
- MAX_BACKUPS=1
|
||||
|
|
Loading…
Reference in a new issue