Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Container generated files gets wrong uid & gid on host machine #31

Closed
3 tasks done
ARehmanMahi opened this issue Jun 18, 2022 · 6 comments
Closed
3 tasks done

Container generated files gets wrong uid & gid on host machine #31

ARehmanMahi opened this issue Jun 18, 2022 · 6 comments

Comments

@ARehmanMahi
Copy link

  • I have tried with the latest version of Docker Desktop
  • I have tried disabling enabled experimental features
  • I have uploaded Diagnostics
  • Diagnostics ID: 2f8f483e-e3ac-44f2-a1e6-8e6a31f5a6a2/20220618200955

Expected behavior

Container service generated files should have same uid on host

Actual behavior

Container service generated files have weird/wrong uid on host

Information

  • Linux distro: Ubuntu
  • Distro version: 22.04
  • Docker Desktop Version: 4.9.1

Container generated files gets wrong uid & gid on host machine, even though container service in this case php-fpm has 1000 uid for user as defined in the docker file, details below.

I did a chown 1000:1000 on storage folder inside container, and after that I get the issue

Screenshot from 2022-06-19 01-26-35

docker-compose

version: '3.8'

services:
    php:
        build:
            context: .
            dockerfile: docker-files/php.dockerfile
            args:
                - user=jenkins
                - group=www-data
                - uid=1000
        container_name: php
        volumes:
            - .:/var/www/html/
        working_dir: /var/www/html/

    nginx:
        build:
            context: .
            dockerfile: docker-files/nginx.dockerfile
        container_name: nginx
        restart: always
        ports:
            - "80:80"
        volumes:
            - .:/var/www/html/
        working_dir: /var/www/html/
        extra_hosts:
            - "laravel-app.test:127.0.0.1"
        depends_on:
            - php

php.dockerfile

FROM php:8.1-fpm-alpine

ARG user
ARG group
ARG uid

RUN addgroup $user
RUN adduser -D -H -u $uid $user -G $user -s /bin/sh

RUN sed -i "s/user[ \t]*=[ \t]*www-data/user = $user/g" /usr/local/etc/php-fpm.d/www.conf
RUN sed -i "s/group[ \t]*=[ \t]*www-data/group = $group/g" /usr/local/etc/php-fpm.d/www.conf
@p1-0tr
Copy link
Member

p1-0tr commented Jun 21, 2022

@ARehmanMahi - the weird uid/gids on the host are actually expected. We are running the file sharing daemon inside a user namespace with uid/gid remapping. This is done so that Docker Desktop can run as a regular user, and not restrict what's possible to do inside its containers (e.g. changing ownership of files). Your user's id and gid will be mapped to root inside the file sharing namespace, so you can chown files to root inside the container, which will mean they will be owned by your user on the host. It is also possible to reconfigure the subordinate id range (a range of uid/gid that your user is allowed to use), to map to meaningful ids on the host (<65k), by editing /etc/subuid and /etc/subgid, but I wouldn't advise doing that because you'd be effectively raising privileges of Docker Desktop.

@ARehmanMahi
Copy link
Author

ARehmanMahi commented Jun 21, 2022

@p1-0tr Thanks for clearing that up for me, so root inside container is mapped to my host user. That is good so far as all root files are owned/accessible by host.

Can the container service (php-fpm) running inside container, be mapped to host user?
Like map www-data of php-fpm to host www-data? As those are the ones not accessible to host user.

You can close this issue. And if the above question is not relevant here, please point me to some direction.
Appreciate your time, Thanks again.

@p1-0tr
Copy link
Member

p1-0tr commented Jun 21, 2022

@ARehmanMahi - currently there isn't a good way to do this, unfortunately. One way would be to do what I mentioned above, which would mean changing /etc/subuid and /etc/subgid to map to actual ranges on your host. Currently they probably have entries which look sth like this <your username>:100000:65536 (<user>:<begining of range>:<size>). Changing them to <your username>:1:65536, would result in uid/gid 1 in the container be mapped to uid/gid 1 (etc.) on the host. This is far from ideal because you effectively raise the privileges of your user. The best alternative would likely be to add a group with gid 100999 (sudo addgroup --gid 100999 <group name>) on your host, add your user to that group, and grant (in the container) group write access to files you want to modify. Would that work for you?

@ARehmanMahi
Copy link
Author

I see, so mapping full range, doesn't sound so good as you already mentioned, But yes, your suggestion to add the 100999 into host is simpler I guess; that would work. I should read on security after I'm done with running my dev environment using docker :)

Yehonal added a commit to azerothcore/azerothcore-wotlk that referenced this issue Nov 7, 2022
- fix docker permissions with mounted volumes on new docker versions (docker/desktop-linux#31)
- fix ac-tools image
- cleanup unused env
- add  `cap_add: SYS_NICE` to allow setting process high priority
- fix ccache in docker
- allow to switch between root user (default) to acore user in any container
- fix cache of the downloaded client data
- split docker github actions in 2 parts
- versioning mysql images
- performance improvements
zTerragor added a commit to TCDEVEmu/TCDevEMU-LICH that referenced this issue Nov 10, 2022
commit f846829
Author: Winfidonarleyan <dowlandtop@yandex.com>
Date:   Tue Nov 8 04:13:30 2022 +0700

    fix(Core/Commands): remove double message in `.unmute`

commit 7ae2627
Author: Winfidonarleyan <dowlandtop@yandex.com>
Date:   Tue Nov 8 03:33:18 2022 +0700

    fix(SQL): correct updates for DBC db

commit 1828a05
Author: Winfidonarleyan <dowlandtop@yandex.com>
Date:   Tue Nov 8 00:58:46 2022 +0700

    feat(Core/Misc): correct after merge

commit bfdc3df
Author: Winfidonarleyan <dowlandtop@yandex.com>
Date:   Mon Nov 7 23:37:11 2022 +0700

    feat(Core/Crypto): apply changes from AC pr
    - azerothcore/azerothcore-wotlk#13354

commit 0976b19
Author: Winfidonarleyan <dowlandtop@yandex.com>
Date:   Mon Nov 7 23:17:51 2022 +0700

    fix(Core/ObjectAccessor): fix arg `oldname` in func `UpdatePlayerNameMapReference`

commit 57e0e6c
Merge: e731670 9dbadbd
Author: Winfidonarleyan <dowlandtop@yandex.com>
Date:   Mon Nov 7 23:09:33 2022 +0700

    Merge remote-tracking branch 'off/master'

    # Conflicts:
    #	.github/workflows/build_tools.yml
    #	.github/workflows/core_build.yml
    #	.github/workflows/core_matrix_build.yml
    #	.github/workflows/core_modules_build.yml
    #	.github/workflows/docker_build.yml
    #	.github/workflows/import_pending.yml
    #	.github/workflows/issue-labeler.yml
    #	.github/workflows/macos_build.yml
    #	.github/workflows/windows_build.yml
    #	apps/ci/ci-conf-core.sh
    #	apps/ci/ci-install.sh
    #	src/server/game/Battlefield/Zones/BattlefieldWG.cpp
    #	src/server/game/Entities/Player/Player.cpp
    #	src/server/game/Entities/Unit/Unit.h
    #	src/server/game/Maps/MapUpdater.cpp
    #	src/server/game/Quests/QuestDef.cpp
    #	src/server/game/Scripting/ScriptMgr.h
    #	src/server/game/Spells/SpellMgr.cpp
    #	src/server/game/World/IWorld.h
    #	src/server/game/World/World.cpp
    #	src/server/scripts/Kalimdor/TempleOfAhnQiraj/temple_of_ahnqiraj.cpp
    #	src/server/scripts/Northrend/zone_wintergrasp.cpp

commit e731670
Author: Winfidonarleyan <dowlandtop@yandex.com>
Date:   Mon Nov 7 18:58:48 2022 +0300

    refactor(Core/IpCache): refactoring ip cache (WarheadCore#153)

    * Rename to IpCache
    * Added guard ban for malformed packet flood
    * Added configure option for each type of ban
    * Now manager initialized at start up

commit 24699e1
Author: Winfidonarleyan <dowlandtop@yandex.com>
Date:   Mon Nov 7 22:53:27 2022 +0700

    fix(Core/Debugging): correct argument for debug info

commit 9dbadbd
Author: Yehonal <yehonal.azeroth@gmail.com>
Date:   Mon Nov 7 16:36:12 2022 +0100

    fix(CI/docker_build): missing step

commit 4e7c57f
Author: Yehonal <yehonal.azeroth@gmail.com>
Date:   Mon Nov 7 14:48:22 2022 +0100

    fix(CORE/docker): image tag creation

commit e401682
Author: Yehonal <yehonal.azeroth@gmail.com>
Date:   Mon Nov 7 13:20:48 2022 +0100

    feat(CORE): docker permissions and rework (#13454)

    - fix docker permissions with mounted volumes on new docker versions (docker/desktop-linux#31)
    - fix ac-tools image
    - cleanup unused env
    - add  `cap_add: SYS_NICE` to allow setting process high priority
    - fix ccache in docker
    - allow to switch between root user (default) to acore user in any container
    - fix cache of the downloaded client data
    - split docker github actions in 2 parts
    - versioning mysql images
    - performance improvements

commit 6177ce4
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Mon Nov 7 00:26:47 2022 -0300

    feat(Core/Scripting): Create OnStoreNewItem() hook (#13725)

commit e029853
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Sun Nov 6 17:54:44 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): d693378

commit d693378
Author: BeefSteak <scottadams1996@live.co.uk>
Date:   Sun Nov 6 17:52:43 2022 +0000

    fix(DB/creature): High Admiral "Shelly" Jorrik Rep and spawn (#13714)

commit 943cd08
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Sat Nov 5 21:46:33 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): f367797

commit f367797
Author: Pyromanihack <82369562+Pyromanihack@users.noreply.github.com>
Date:   Sat Nov 5 22:44:26 2022 +0100

    fix(DB/Creature) Slain Auchenai Warrior & Slain Sha'tar Vindicator (#13695)

    * Create An Improper Burial.sql

    * Update An Improper Burial.sql

    * Rename An Improper Burial.sql to AnImproperBurial.sql

    * Update AnImproperBurial.sql

    * Update AnImproperBurial.sql

    * Update AnImproperBurial.sql

    * Update AnImproperBurial.sql

    * Update AnImproperBurial.sql

    * Update data/sql/updates/pending_db_world/AnImproperBurial.sql

    Co-authored-by: Gultask <100873791+Gultask@users.noreply.github.com>

    Co-authored-by: Gultask <100873791+Gultask@users.noreply.github.com>

commit c707443
Author: BeefSteak <scottadams1996@live.co.uk>
Date:   Sat Nov 5 21:43:39 2022 +0000

    fix(DB/GameObject): instant spawn on 61-64 quest interactables (#13712)

    * fix(DB/gameobject): instant spaww on quest interactables

    * Update data/sql/updates/pending_db_world/rev_1667666190202265500.sql

    Co-authored-by: Gultask <100873791+Gultask@users.noreply.github.com>

    Co-authored-by: Gultask <100873791+Gultask@users.noreply.github.com>

commit 5e120e4
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Sat Nov 5 18:42:55 2022 -0300

    fix(DB/SAI): Change Qiraji Mindslayer Mana Burn cast to ON_DEATH instead of UPDATE_IC (#13715)

    * Create rev_1667681347229290600.sql

    * comment

commit bb9e80d
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Sat Nov 5 15:04:02 2022 -0300

    fix(Core/Unit): Exclude Sword Specialization and Hack and Slash from … (#13706)

    * fix(Core/Unit): Exclude Sword Specialization and Hack and Slash from the extra attack range check

    * fix  logic

commit 8b7fb75
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Sat Nov 5 12:39:58 2022 -0300

    feat(Core/Scripting): Expand ModifySpellDamageTaken() to include the … (#13707)

    feat(Core/Scripting): Expand ModifySpellDamageTaken() to include the spell data

commit 20cf69c
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Sat Nov 5 01:51:01 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 5dadd5e

commit 5dadd5e
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Fri Nov 4 22:48:56 2022 -0300

    fix(DB/Creature): Remove wrong MECHANIC_SLOW_ATTACK immunity from cre… (#13700)

    fix(DB/Creature): Remove wrong MECHANIC_SLOW_ATTACK immunity from creatures

    Co-authored-by: ariel- <ariel-@users.noreply.github.com>

commit 5a189b9
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Fri Nov 4 23:13:05 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 4331590

commit 4331590
Author: Eddy Vega <61223313+Si1ker@users.noreply.github.com>
Date:   Fri Nov 4 17:10:58 2022 -0600

    fix(Scripts/TempleOfAhnQiraj): Huhuran/BugTrio - EnterCombat (#13653)

    init

    Co-authored-by: Si1ker <Si1ker@users.noreply.github.com>

commit 3176f80
Author: BeefSteak <scottadams1996@live.co.uk>
Date:   Fri Nov 4 23:10:19 2022 +0000

    fix(DB/Creature) Lisaile Fireweaver (#13679)

    * Create rev_1667492399768442000.sql

    * Update rev_1667492399768442000.sql

commit 5f366c7
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Fri Nov 4 22:31:40 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): c3d511e

commit c3d511e
Author: Mickaël Mauger <mikaisback@gmail.com>
Date:   Fri Nov 4 23:29:42 2022 +0100

    fix(DB/areatrigger_tavern) Fix neutral rest area in Booty Bay (#13656)

commit 53874ea
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Fri Nov 4 19:28:48 2022 -0300

    fix(DB/quest_template_addon): Add repeatable flag to Imperial Qiraji quests (#13688)

    Create rev_1667582937946491700.sql

commit e5ff59e
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Fri Nov 4 19:27:02 2022 -0300

    fix(Core/Unit): Check if the unit is within melee range before proces… (#13697)

    fix(Core/Unit): Check if the unit is within melee range before processing extra attack procs

commit 5c88f92
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Fri Nov 4 19:24:57 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Don't store object references in scripts (#13694)

commit 6cb85d2
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Fri Nov 4 19:17:50 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Fix crash caused by permanently spawni… (#13698)

    fix(Scripts/TempleOfAhnQiraj): Fix crash caused by permanently spawning a tentacle

commit fc914f0
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Fri Nov 4 17:55:06 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Fix Ouro not using abilities if there's only one player and he's out of his melee range (#13692)

    fix(Scripts/TempleOfAhnQiraj): Fix Ouro not using abilities if

commit a7cd116
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Fri Nov 4 17:23:18 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Replace Sartura's Gaze mechanic with a threat wipe (#13691)

    Update boss_sartura.cpp

commit 2420d19
Author: Yehonal <yehonal.azeroth@gmail.com>
Date:   Fri Nov 4 13:53:07 2022 +0100

    fix(CORE): file permissions for the devcontainer (#13686)

commit e641383
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Thu Nov 3 21:49:12 2022 -0300

    fix(Core/Scripting): Also call the OnLootItem() hook on master looted… (#13683)

    fix(Core/Scripting): Also call the OnLootItem() hook on master looted items

commit 93622cc
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Thu Nov 3 22:35:16 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 11f24c7

commit 11f24c7
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Thu Nov 3 19:33:19 2022 -0300

    fix(DB/gameobject): Improve Netherstorm gathering nodes and pooling (#13582)

    * Create rev_1667013367603603200.sql

    * Update rev_1667013367603603200.sql

commit 060a5d7
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Thu Nov 3 19:33:03 2022 -0300

    fix(DB/gameobject): Improve Outlands Fishing Pools (#13570)

    * Create rev_1666846735500507700.sql

    * Update rev_1666846735500507700.sql

    * Update rev_1666846735500507700.sql

    * Update rev_1666846735500507700.sql

    * Update rev_1666846735500507700.sql

commit 7a0f93f
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Thu Nov 3 19:32:50 2022 -0300

    fix(DB/gameobject): Improve Blade's Edge Mountains gathering nodes and pooling (#13560)

    * Create rev_1666736341759072400.sql

    * Update rev_1666736341759072400.sql

    * Update rev_1666736341759072400.sql

    * Update rev_1666736341759072400.sql

commit 4481d0f
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Thu Nov 3 22:32:21 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): db4718e

commit db4718e
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Thu Nov 3 19:30:13 2022 -0300

    fix(DB/gameobject): Improve Shadowmoon Valley gathering nodes and pooling (#13596)

    * netherstorm&shadowmoon

    * 1

    * Update rev_1666967746138486200.sql

    * Update rev_1666967746138486200.sql

    * Delete rev_1666967746138486200.sql

    * Update rev_1666968270249187300.sql

    * Update rev_1666968270249187300.sql

    * Update rev_1666968270249187300.sql

commit 63b9bc3
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Thu Nov 3 19:29:40 2022 -0300

    fix(DB/gameobject): Improve Terokkar Forest gathering nodes (#13466)

    * Create rev_1666109692456128300.sql

    * Update rev_1666109692456128300.sql

    * Update rev_1666109692456128300.sql

    * forgot counts

    * Update rev_1666109692456128300.sql

    * Update rev_1666109692456128300.sql

    * Update rev_1666109692456128300.sql

    * Update rev_1666109692456128300.sql

    * Update rev_1666109692456128300.sql

commit 817e9cb
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Thu Nov 3 19:29:29 2022 -0300

    fix(DB/gameobject): Improve Zangarmarsh gathering nodes and pooling (#13442)

    * Zangarmarsh ores

    * Update rev_1665883739398729200.sql

    * Update rev_1665883739398729200.sql

    * Update rev_1665883739398729200.sql

    * final

    * Update rev_1665883739398729200.sql

    * Update rev_1665883739398729200.sql

    * Update rev_1665883739398729200.sql

    * Update rev_1665883739398729200.sql

commit 45c86f2
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Thu Nov 3 22:28:43 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 84b6a7a

commit 84b6a7a
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Thu Nov 3 19:26:22 2022 -0300

    fix(DB/gameobject): Improve Hellfire Peninsula gathering nodes and pooling (#13398)

    * Create applyallspawns.sql

    * Create rev_1665524932902737000.sql

    * Update rev_1665524932902737000.sql

    * Update rev_1665524932902737000.sql

    * Update rev_1665524932902737000.sql

    * Update rev_1665524932902737000.sql

    * Update rev_1665524932902737000.sql

    * Update rev_1665524932902737000.sql

    * Delete applyallspawns.sql

    * Update rev_1665524932902737000.sql

    * reaname

    * update

    * aaa

    * update

    * done

    * Update hellfire.sql

commit cf4abd3
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Thu Nov 3 22:22:17 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 9b6450e

commit 9b6450e
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Thu Nov 3 19:20:16 2022 -0300

    fix(DB/gameobject): Add more Shredder Parts (#13605)

    Create rev_1667137129043288400.sql

commit d9ab07d
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Thu Nov 3 19:18:37 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Improve Veklor pathing (#13682)

commit 9db323b
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Thu Nov 3 21:52:47 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 2ca3f8a

commit 2ca3f8a
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Thu Nov 3 18:50:39 2022 -0300

    fix(DB/gameobject): Adjust respawn timers for Hellfire Peninsula quest objects 184466 and 185302 (#13681)

    Create rev_1667341167147160100.sql

commit ef8d7f4
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Wed Nov 2 22:34:52 2022 -0300

    feat(Core/Scripting): Implement OnAuraApply() hook for unitscripts (#13658)

    * feat(Core/Scripting): Implement OnAuraApply() hook for unitscripts

    * fix build

    * Update ScriptMgr.h

commit ab3548e
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Wed Nov 2 19:19:17 2022 -0300

    feat(Core/Scripting): Expand ModifyHealReceived() to also include hea… (#13655)

    feat(Core/Scripting): Expand ModifyHealReceived() to also include healing over time

commit 8e0b6ac
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Wed Nov 2 11:07:49 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): cd88c36

commit cd88c36
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Wed Nov 2 08:05:48 2022 -0300

    fix(DB/Creature): Improve Outlands Gas Clouds (#13562)

    * Create rev_1666838957647579500.sql

    * Update rev_1666838957647579500.sql

    * Update rev_1666838957647579500.sql

commit 403563f
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Wed Nov 2 08:05:17 2022 -0300

    fix(DB/GameObject): Improve Isle of Quel'Danas gathering nodes and pooling (#13597)

    * Create rev_1667095244859716200.sql

    * Update rev_1667095244859716200.sql

commit 1954ca9
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Tue Nov 1 23:22:12 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): e0758cb

commit e0758cb
Author: Pyromanihack <82369562+Pyromanihack@users.noreply.github.com>
Date:   Wed Nov 2 00:20:07 2022 +0100

    fix(DB/creature): Reduced Firewing Courier's spawntime, text added (#13629)

    * Create FC

    * Update FC

    * Rename FC to FC.sql

    * Create FC.sql

    * Delete FC.sql

    * Update FC.sql

    * Update FC.sql

    * Update FC.sql

commit 8bbe618
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Tue Nov 1 23:11:58 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 346061e

commit 346061e
Author: BeefSteak <scottadams1996@live.co.uk>
Date:   Tue Nov 1 23:09:52 2022 +0000

    fix(DB/Quest): The Grateful Dead (Draenei) (#13640)

    * Revert "fix(CORE/dbupdate)): allow to pass MySQL password via env (#13404)"

    This reverts commit c855e8d.

    * Create rev_1667339441492047200.sql

    * Revert "Revert "fix(CORE/dbupdate)): allow to pass MySQL password via env (#13404)""

    This reverts commit 086cc8602d7f9d7837eb2307819f3ed1fd5dc3bb.

commit 8f19bcd
Author: M'Dic <joshua.lee.betts@gmail.com>
Date:   Tue Nov 1 19:00:42 2022 -0400

    Add (core\logging): Log sync db queries in mapupdater (#13638)

    This will Log sync db queries in World::Update() loop for the mapupdater when building in debug.
    Originally part of TC Commit TrinityCore/TrinityCore#25174
    Apparently azerothcore never cherrypicked it entirely for whatever reason and is needed when running a debugger in debug build for me to find and address some recent crash issues that been posted on the issues to fully verify the issue.

    Co-Authored-By: Giacomo Pozzoni <giacomopoz@gmail.com>

commit 6da7802
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Tue Nov 1 21:39:33 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 4416da1

commit 4416da1
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Tue Nov 1 18:37:15 2022 -0300

    fix(DB/Formations): Link packs in the Blood Furnace (#13628)

    Create rev_1667242202076250300.sql

commit ad417a0
Author: Pyromanihack <82369562+Pyromanihack@users.noreply.github.com>
Date:   Tue Nov 1 22:36:30 2022 +0100

    fix(DB/Creature): Improve Azuregos' mechanic (#13616)

    * Create Azuregos

    * Update Azuregos

    * Update data/sql/updates/pending_db_world/Azuregos

    Co-authored-by: Gultask <100873791+Gultask@users.noreply.github.com>

    * Rename Azuregos to Azuregos.sql

    Co-authored-by: Gultask <100873791+Gultask@users.noreply.github.com>

commit 5a78222
Author: ZhengPeiRu21 <98835050+ZhengPeiRu21@users.noreply.github.com>
Date:   Tue Nov 1 03:22:09 2022 -0600

    feat(Core): Config to disable all Wintergrasp processing (#13086)

    * feat(Core): Config to disable all Wintergrasp processing

    * Use 2 instead of -1 - configs are parsed as uint

    * Fix build warnings

commit 9e89917
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Tue Nov 1 10:21:30 2022 +0100

    fix(Core): Crashfix. (#13484)

    Fixes #13329
    Fixes #13145

commit 5621781
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Tue Nov 1 09:19:06 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): b802584

commit b802584
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Tue Nov 1 06:17:06 2022 -0300

    fix(DB/GameObject): Improve Nagrand gathering nodes and pooling (#13545)

    * Create rev_1666308049565933600.sql

    * Update rev_1666308049565933600.sql

    * Update rev_1666308049565933600.sql

    * Update rev_1666308049565933600.sql

    * Update rev_1666308049565933600.sql

    * Update rev_1666308049565933600.sql

    * Update rev_1666308049565933600.sql

    * Update rev_1666308049565933600.sql

commit c9d60bd
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Tue Nov 1 06:15:39 2022 -0300

    fix(DB/Formations): Update Hellfire Ramparts GroupAI and link stationary packs (#13600)

    Create rev_1667120120146402200.sql

commit 200a4b6
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Tue Nov 1 00:20:20 2022 -0300

    fix(Scripts/Commands): Fix group list command output (#13614)

commit c2fe79d
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Sun Oct 30 23:39:34 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): b4f5bf8

commit b4f5bf8
Author: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com>
Date:   Sun Oct 30 19:37:27 2022 -0400

    feat(DB): Change VerifiedBuild datatype to MEDIUMINT (#12960)

    * Create blackrock-drakes.sql

    * Guess I guess

    * Create verifiedbuild.sql

    * put the sql away waltuh

    * Remove broadcast_text table changes.

commit df3e3b1
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Sun Oct 30 16:25:43 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Fix Sartura not enraging if stunned (#13615)

commit f2c1647
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Sun Oct 30 16:21:40 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 5dc89c0

commit 5dc89c0
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Sun Oct 30 13:19:20 2022 -0300

    fix(DB/Loot): Fix Burning Legion Missive drop chance (#13607)

    * Create rev_1667137824014916600.sql

    * Update rev_1667137824014916600.sql

commit 330d45b
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:18:27 2022 +0200

    fix(Core/Spells): Spells requires cast from behind victim bypass Dete… (#13499)

    fix(Core/Spells): Spells requires cast from behind victim bypass Deterrence.

    Fixes #13212

commit 74a6127
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Sat Oct 29 10:18:22 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 4ac4374

commit 4ac4374
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:16:26 2022 +0200

    fix(Core/Units): Fixed uninitialized `m_cleanDamage` variable after e390087 (#13485)

    fix(Core/Units): Fixed uninitialized `m_cleanDamage` variable after e390087.

    Improved 2527554

commit 3da4d30
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:15:32 2022 +0200

    fix(Core/Players): Fixed obtaining extra (custom) talent points only … (#13526)

    fix(Core/Players): Fixed obtaining extra (custom) talent points only for DK class.

    Fixes #4327

commit f3820bd
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:15:18 2022 +0200

    fix(Core/Players): Players should nt able to rest in unfriendly taver… (#13493)

    * fix(Core/Players): Players should nt able to rest in unfriendly taverns. Original author: @Rushor

    Fixes #13459

    * Update.

commit b50675d
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:15:00 2022 +0200

    fix(DB/Spells): Bloodsurge vs Slam. (#13507)

    Fixes #12832

commit 751bc4f
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:14:38 2022 +0200

    fix(Scripts/MoltenCore): Lava Spawn. (#13508)

    Fixes #13107

commit 670d572
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:14:07 2022 +0200

    fix(Core/Pets): Tamed hunter pets should deal physical damage. (#13522)

    Fixes #13497

commit 441ab45
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:13:52 2022 +0200

    fix(DB/WorldEvents): Added missing spawn of Katrina Shimmerstar. (#13516)

    Fixes #13510

commit eb3f80c
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:13:36 2022 +0200

    fix(Core/Spells): Implemented SPELL_HIT_TYPE_SPLIT hit type. Source: … (#13518)

    fix(Core/Spells): Implemented SPELL_HIT_TYPE_SPLIT hit type. Source: TrinityCore.

    Fixes #13306

commit 4ef1010
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:13:09 2022 +0200

    fix(Core/Spells): Maelstrom Weapon should not reset attack timers. (#13504)

    Fixes #13179

commit 0cd6319
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:12:49 2022 +0200

    fix(Core/Spells): Fixed calculating LoS for dynamic objects. (#13521)

    Fixes #13255

commit 41d3df9
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:12:35 2022 +0200

    fix(Scripts/Commands): Fixed command `learn all my talents` for chars… (#13529)

    fix(Scripts/Commands): Fixed command `learn all my talents` for chars with 255 level.

    Fixes #4788

commit bcd9ad5
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:11:50 2022 +0200

    fix(Core/Quest): Fixed implementation of `CONFIG_QUEST_IGNORE_AUTO_ACCEPT` and `CONFIG_QUEST_IGNORE_AUTO_COMPLETE` configs. (#13525)

    Fixes #3503

commit ab9c648
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sat Oct 29 12:11:36 2022 +0200

    fix(Core/Movement): Removed some leftover after c8f43d8. (#13524)

    Closes #2623

commit 420aee4
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Sat Oct 29 01:12:23 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 43cd1eb

commit 43cd1eb
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Fri Oct 28 22:10:26 2022 -0300

    fix(DB/Creature): Add interrupt immunity to Emperor Vek'lor (#13483)

    Create rev_1666399404567254100.sql

commit 0b74502
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Fri Oct 28 22:01:47 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Ouro Sand Blast should hit top threat … (#13578)

    * fix(Scripts/TempleOfAhnQiraj): Ouro Sand Blast should hit top threat target

    * ouro should only target players in melee range

    * fix ouro resetting

    * Update boss_ouro.cpp

commit f266997
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Fri Oct 28 22:40:11 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 655435c

commit 655435c
Author: Eddy Vega <61223313+Si1ker@users.noreply.github.com>
Date:   Fri Oct 28 16:38:08 2022 -0600

    fix(DB/Creature): AQ40 taunt immunity (#13576)

    init

    Co-authored-by: Si1ker <Si1ker@users.noreply.github.com>

commit 003f574
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Fri Oct 28 19:37:04 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Properly prevent Uppercut from triggering Double Attack (#13581)

    * netherstorm&shadowmoon

    * 1

    * fix

    * 2

commit c06f296
Author: Eddy Vega <61223313+Si1ker@users.noreply.github.com>
Date:   Fri Oct 28 11:35:26 2022 -0600

    fix(Scripts/TempleOfAhnQiraj): Sand Blast threat-wipe mechanic (#13577)

    init

    Co-authored-by: Si1ker <Si1ker@users.noreply.github.com>

commit b4a21ff
Author: Francesco Borzì <borzifrancesco@gmail.com>
Date:   Fri Oct 28 17:56:54 2022 +0200

    feat(CI): auto-assign to all projects

commit b52ee4d
Author: Francesco Borzì <borzifrancesco@gmail.com>
Date:   Fri Oct 28 17:41:59 2022 +0200

    fix(CI): improve previous commit

commit 7bbeea7
Author: Francesco Borzì <borzifrancesco@gmail.com>
Date:   Fri Oct 28 17:35:53 2022 +0200

    fix(CI): correct auto-assign-projects

commit 30bbd5b
Author: Francesco Borzì <borzifrancesco@gmail.com>
Date:   Fri Oct 28 17:23:48 2022 +0200

    feat(CI): try assign-to-one-project

commit d4d58d2
Author: Francesco Borzì <borzifrancesco@gmail.com>
Date:   Fri Oct 28 16:35:09 2022 +0200

    fix(CI): use add-to-projects v0.0.5

commit 4d88f7e
Author: Francesco Borzì <borzifrancesco@gmail.com>
Date:   Fri Oct 28 16:30:41 2022 +0200

    feat(CI): first experiment with add-to-project

commit 9d93a7e
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Thu Oct 27 10:24:52 2022 +0200

    fix(Scripts/TempleofAhnQiraj): Cthun Grasps should despawn on Cthun… (#13503)

    fix(Scripts/Temple of AhnQiraj): Cthun Grasps should despawn on Cthun death.

    Fixes #13443

commit 93796bb
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Thu Oct 27 10:23:51 2022 +0200

    fix(Core/Creatures): Fixed loading transform auras from DB. (#13489)

    Fixes #13472

commit 5338117
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Thu Oct 27 10:23:05 2022 +0200

    fix(Core/Movement): Fixed mobs evading attacks in case of incompleted… (#13519)

    fix(Core/Movement): Fixed mobs evading attacks in case of incompleted movement paths.

    Fixes #12339
    Fixes #13156

commit 860a5b8
Author: Angelo Venturini <nefertum.dev@protonmail.com>
Date:   Wed Oct 26 19:54:40 2022 -0300

    fix: Crash (#13559)

commit be64080
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Wed Oct 26 21:56:37 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): e162b81

commit e162b81
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Wed Oct 26 23:54:32 2022 +0200

    fix(DB/Spells): Fiery Payback should have 1min internal cooldown. (#13496)

commit bfa68b0
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Wed Oct 26 17:17:46 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Don't let Giant Claw Tentacles autoatt… (#13550)

    * fix(Scripts/TempleOfAhnQiraj): Don't let Giant Claw Tentacles autoattack while submerged and reorder digestive acid cast

    * delay small claw tentacles autoattack by 2s

    * Revert "delay small claw tentacles autoattack by 2s"

    This reverts commit 08b9c7d62528a9147266d084768b8a7fb0deb3e0.

    * change the delay

commit 47bf00a
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Wed Oct 26 02:43:06 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 07d030a

commit 07d030a
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Tue Oct 25 23:41:07 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Huhuran's Wyvern Sting should hit the … (#13468)

    * fix(Scripts/TempleOfAhnQiraj): Huhuran's Wyvern Sting should hit the closest targets

    * Update boss_huhuran.cpp

commit 5f48a74
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Tue Oct 25 18:28:57 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): e4ecb08

commit e4ecb08
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Tue Oct 25 20:26:48 2022 +0200

    fix(DB/Spells): Spell Axe Flurry should target only one player. (#13208)

    * fix(DB/Spells): Spell Axe Flurry should target only one player.

    Fixes #12525

    * Update.

    * Update.

commit 3c8a148
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Tue Oct 25 15:43:39 2022 +0200

    fix(Scripts/Temple of AhnQiraj): Slime Toxin clouds should despawn 10… (#13492)

    * fix(Scripts/Temple of AhnQiraj): Slime Toxin clouds should despawn 10 sec after Viscidus death.

    Fixes #13420

    * Update.

commit be133a1
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Tue Oct 25 09:54:13 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Fix Veklor hitbox (#13543)

    * fix(Scripts/TempleOfAhnQiraj): Fix Veklor hitbox

    * Update boss_twinemperors.cpp

commit d5a7c2a
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Tue Oct 25 12:37:13 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 7704467

commit 7704467
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Tue Oct 25 09:35:00 2022 -0300

    fix(DB/Movement): Root the Eye of C'thun (#13528)

commit e585f05
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Tue Oct 25 01:46:22 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 848b3da

commit 848b3da
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Mon Oct 24 22:44:11 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Make sure Sartura adds respawn on evade (#13541)

    * 1

    * Update rev_1666648043812780000.sql

commit 192bf47
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Mon Oct 24 22:43:46 2022 -0300

    feat(Scripts/Commands): Implement character changeaccount command (#13532)

    * feat(Scripts/Commands): Implement character changeaccount command

    * strings and stuff

    * clear unused

commit e55d7cb
Author: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Date:   Mon Oct 24 12:24:23 2022 -0300

    fix(Core/ObjectAcessor): Fix crash caused by forced character renames (#13527)

commit c54d56c
Author: schell244 <Schell244@web.de>
Date:   Mon Oct 24 16:09:52 2022 +0200

    fix(Core/Event): STV Riggle Bassbait broadcast text ids (#13517)

    * fix broadcast_text not found

    * use creature->AI()->Talk() instead of creature->Yell()

    Co-authored-by: schell244 <>

commit b0c09a3
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Sun Oct 23 17:04:16 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Prevent Sartura from casting Whirlwind while stunned (#13481)

    Update boss_sartura.cpp

commit e2b866d
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sun Oct 23 21:51:47 2022 +0200

    fix(Core/Spells): Deep Wounds can proc off from non-physical spells. (#13494)

    Fixes #13431

commit 2dddc09
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Sun Oct 23 16:44:25 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Prevent Uppercut from triggering Double Attack (#13482)

    Update boss_twinemperors.cpp

commit 6cefa4d
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Sun Oct 23 19:40:12 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): 67f5e59

commit 67f5e59
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sun Oct 23 21:38:05 2022 +0200

    fix(DB/Creatures): Timothy Cunningham should be civilian. (#13495)

    Fixes #13423

commit e9be051
Author: Gultask <100873791+Gultask@users.noreply.github.com>
Date:   Sun Oct 23 16:37:40 2022 -0300

    fix(Scripts/TempleOfAhnQiraj): Correct Anubisath Defender Explode spell ID (#13500)

    Update temple_of_ahnqiraj.cpp

commit 328763a
Author: AzerothCoreBot <azerothcorebot@gmail.com>
Date:   Sun Oct 23 15:07:38 2022 +0000

    chore(DB): import pending files

    Referenced commit(s): ae8ef16

commit ae8ef16
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sun Oct 23 17:05:36 2022 +0200

    fix(DB/HallowsEnd): Fixed quest chaining of Fire Brigade Practice and… (#13486)

    fix(DB/HallowsEnd): Fixed quest chaining of Fire Brigade Practice and Fire Training.

    Fixes #13439

commit dbd7855
Author: UltraNix <80540499+UltraNix@users.noreply.github.com>
Date:   Sun Oct 23 17:04:55 2022 +0200

    fix(Scripts/HallowsEnd): Fixed starting "Let the fires come" event. (#13487)

    Fixes #13440
    Fixes #13441

commit 55a5684
Author: M'Dic <joshua.lee.betts@gmail.com>
Date:   Sun Oct 23 09:19:35 2022 -0400

    Add (core): Effect Transmit Anticheat Helper (#13447)

    Add (core): Anticheat Helper
Tennesseej pushed a commit to Tennesseej/azerothcore-wotlk that referenced this issue Feb 27, 2023
- fix docker permissions with mounted volumes on new docker versions (docker/desktop-linux#31)
- fix ac-tools image
- cleanup unused env
- add  `cap_add: SYS_NICE` to allow setting process high priority
- fix ccache in docker
- allow to switch between root user (default) to acore user in any container
- fix cache of the downloaded client data
- split docker github actions in 2 parts
- versioning mysql images
- performance improvements
@docker-robott
Copy link
Collaborator

Closed issues are locked after 30 days of inactivity.
This helps our team focus on active issues.

If you have found a problem that seems similar to this, please open a new issue.

/lifecycle locked

1 similar comment
@docker-robott
Copy link
Collaborator

Closed issues are locked after 30 days of inactivity.
This helps our team focus on active issues.

If you have found a problem that seems similar to this, please open a new issue.

/lifecycle locked

@docker docker locked and limited conversation to collaborators Apr 7, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants