Skip to content

Commit

Permalink
s/tuxgasy/dolibarr/g
Browse files Browse the repository at this point in the history
  • Loading branch information
creekorful committed Aug 15, 2024
1 parent b56d362 commit 189ab87
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ services:
MYSQL_DATABASE: dolibarr

web:
image: tuxgasy/dolibarr
image: dolibarr/dolibarr
environment:
DOLI_DB_HOST: mariadb
DOLI_DB_USER: root
Expand Down Expand Up @@ -159,7 +159,7 @@ services:
MYSQL_DATABASE: dolibarr
web:
image: tuxgasy/dolibarr
image: dolibarr/dolibarr
environment:
DOLI_DB_HOST: mariadb
DOLI_DB_USER: root
Expand Down
4 changes: 2 additions & 2 deletions README.template
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ services:
MYSQL_DATABASE: dolibarr

web:
image: tuxgasy/dolibarr
image: dolibarr/dolibarr
environment:
DOLI_DB_HOST: mariadb
DOLI_DB_USER: root
Expand Down Expand Up @@ -153,7 +153,7 @@ services:
MYSQL_DATABASE: dolibarr

web:
image: tuxgasy/dolibarr
image: dolibarr/dolibarr
environment:
DOLI_DB_HOST: mariadb
DOLI_DB_USER: root
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:
cron:
build:
context: ./docker-compose-links/${DOLI_VERSION}${PHP_VERSION}
image: tuxgasy/dolibarr:${DOLI_VERSION}${PHP_VERSION}
image: dolibarr/dolibarr:${DOLI_VERSION}${PHP_VERSION}
secrets:
- mysql-user
- mysql-password
Expand All @@ -61,7 +61,7 @@ services:
web:
build:
context: ./docker-compose-links/${DOLI_VERSION}${PHP_VERSION}
image: tuxgasy/dolibarr:${DOLI_VERSION}${PHP_VERSION}
image: dolibarr/dolibarr:${DOLI_VERSION}${PHP_VERSION}
secrets:
- mysql-user
- mysql-password
Expand Down
2 changes: 1 addition & 1 deletion examples/with-certbot/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
- ./docker/db/data:/var/lib/mysql

web:
image: tuxgasy/dolibarr
image: dolibarr/dolibarr
container_name: doli_web
env_file:
- ./.env
Expand Down
2 changes: 1 addition & 1 deletion examples/with-mysql/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ volumes:

services:
dolibarr:
image: tuxgasy/dolibarr:latest
image: dolibarr/dolibarr:latest
environment:
DOLI_DB_HOST: "mysql"
DOLI_DB_HOST_PORT: "3306"
Expand Down
2 changes: 1 addition & 1 deletion examples/with-pgsql/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ volumes:

services:
dolibarr:
image: tuxgasy/dolibarr:latest
image: dolibarr/dolibarr:latest
depends_on:
- postgres
environment:
Expand Down
2 changes: 1 addition & 1 deletion examples/with-rp-traefik/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:
- backend-isolated

dolibarr:
image: tuxgasy/dolibarr:latest
image: dolibarr/dolibarr:latest
environment:
DOLI_DB_HOST: "mysql"
DOLI_DB_USER: "dolibarr"
Expand Down
2 changes: 1 addition & 1 deletion examples/with-secrets/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ secrets:

services:
dolibarr:
image: tuxgasy/dolibarr:latest
image: dolibarr/dolibarr:latest
secrets:
- dolibarr-admin-user
- dolibarr-admin-password
Expand Down
6 changes: 3 additions & 3 deletions update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ for dolibarrVersion in "${DOLIBARR_VERSIONS[@]}"; do
tags="${tags} ${currentTag}"
fi

buildOptionTags="--tag tuxgasy/dolibarr:${currentTag}"
buildOptionTags="--tag dolibarr/dolibarr:${currentTag}"
if [ "${dolibarrVersion}" != "develop" ]; then
buildOptionTags="${buildOptionTags} --tag tuxgasy/dolibarr:${dolibarrVersion} --tag tuxgasy/dolibarr:${dolibarrMajor}"
buildOptionTags="${buildOptionTags} --tag dolibarr/dolibarr:${dolibarrVersion} --tag dolibarr/dolibarr:${dolibarrMajor}"
fi
if [ "${dolibarrVersion}" = "${DOLIBARR_LATEST_TAG}" ]; then
buildOptionTags="${buildOptionTags} --tag tuxgasy/dolibarr:latest"
buildOptionTags="${buildOptionTags} --tag dolibarr/dolibarr:latest"
fi

dir="${BASE_DIR}/images/${currentTag}"
Expand Down

0 comments on commit 189ab87

Please sign in to comment.