Compare commits

..

3 Commits

Author SHA1 Message Date
1599a79b15 Merge pull request 'suggestion-76-files-migration' (#45) from suggestion-76 into develop
All checks were successful
/ build-docker (push) Successful in 17m2s
Reviewed-on: #45
Reviewed-by: oznobys <oznobys@noreply.localhost>
2025-08-22 20:45:20 +00:00
51f78f3ec0
add file migration commands to Dockerfile 2025-08-22 22:53:03 +03:00
733c2d7d26 Merge pull request 'suggestion-81' (#44) from suggestion-81 into develop
All checks were successful
/ build-docker (push) Successful in 11m6s
Reviewed-on: #44
Reviewed-by: oznobys <oznobys@noreply.localhost>
2025-08-21 14:35:09 +00:00

View File

@ -9,29 +9,31 @@ ADD ./src ${CONFIG_PATH}
RUN mkdir ${DATA_PATH} RUN mkdir ${DATA_PATH}
# Add symlinks to Minecraft default files # Add symlinks to Minecraft Vanilla files
RUN touch ${DATA_PATH}/banned-ips.json && \ RUN mkdir ${DATA_PATH}/Vanilla && \
ln -sf ${DATA_PATH}/banned-ips.json ${CONFIG_PATH} && \ touch ${DATA_PATH}/Vanilla/banned-ips.json && \
touch ${DATA_PATH}/banned-players.json && \ ln -sf ${DATA_PATH}/Vanilla/banned-ips.json ${CONFIG_PATH} && \
ln -sf ${DATA_PATH}/banned-players.json ${CONFIG_PATH} && \ touch ${DATA_PATH}/Vanilla/banned-players.json && \
mkdir ${DATA_PATH}/logs && \ ln -sf ${DATA_PATH}/Vanilla/banned-players.json ${CONFIG_PATH} && \
ln -sf ${DATA_PATH}/logs ${CONFIG_PATH} && \ mkdir ${DATA_PATH}/Vanilla/logs && \
touch ${DATA_PATH}/ops.json && \ ln -sf ${DATA_PATH}/Vanilla/logs ${CONFIG_PATH} && \
ln -sf ${DATA_PATH}/ops.json ${CONFIG_PATH} && \ touch ${DATA_PATH}/Vanilla/ops.json && \
touch ${DATA_PATH}/usercache.json && \ ln -sf ${DATA_PATH}/Vanilla/ops.json ${CONFIG_PATH} && \
ln -sf ${DATA_PATH}/usercache.json ${CONFIG_PATH} && \ touch ${DATA_PATH}/Vanilla/usercache.json && \
touch ${DATA_PATH}/whitelist.json && \ ln -sf ${DATA_PATH}/Vanilla/usercache.json ${CONFIG_PATH} && \
ln -sf ${DATA_PATH}/whitelist.json ${CONFIG_PATH} && \ touch ${DATA_PATH}/Vanilla/whitelist.json && \
mkdir ${DATA_PATH}/world && \ ln -sf ${DATA_PATH}/Vanilla/whitelist.json ${CONFIG_PATH} && \
ln -sf ${DATA_PATH}/world ${CONFIG_PATH} && \ mkdir ${DATA_PATH}/Vanilla/world && \
mkdir ${DATA_PATH}/world_nether && \ ln -sf ${DATA_PATH}/Vanilla/world ${CONFIG_PATH} && \
ln -sf ${DATA_PATH}/world_nether ${CONFIG_PATH} && \ mkdir ${DATA_PATH}/Vanilla/world_nether && \
mkdir ${DATA_PATH}/world_the_end && \ ln -sf ${DATA_PATH}/Vanilla/world_nether ${CONFIG_PATH} && \
ln -sf ${DATA_PATH}/world_the_end ${CONFIG_PATH} mkdir ${DATA_PATH}/Vanilla/world_the_end && \
ln -sf ${DATA_PATH}/Vanilla/world_the_end ${CONFIG_PATH}
# Add symlinks to PlasmoVoice files # Add symlinks to PlasmoVoice files
RUN touch ${DATA_PATH}/pv-voice_mutes.json && \ RUN mkdir ${DATA_PATH}/PlasmoVoice && \
ln -sf ${DATA_PATH}/pv-voice_mutes.json \ touch ${DATA_PATH}/PlasmoVoice/pv-voice_mutes.json && \
ln -sf ${DATA_PATH}/PlasmoVoice/pv-voice_mutes.json \
${CONFIG_PATH}/plugins/PlasmoVoice/voice_mutes.json ${CONFIG_PATH}/plugins/PlasmoVoice/voice_mutes.json
# Add symlinks to SuperVanish files # Add symlinks to SuperVanish files
@ -144,6 +146,20 @@ ENV DISCORDSRV_DB_PASSWORD=0000
WORKDIR ${WORKDIR_PATH}/config WORKDIR ${WORKDIR_PATH}/config
CMD \ CMD \
# Remove after migrated
mkdir -p ${DATA_PATH}/Vanilla && \
if [ -e ${DATA_PATH}/banned-ips.json ]; then mv ${DATA_PATH}/banned-ips.json ${DATA_PATH}/Vanilla; fi && \
if [ -e ${DATA_PATH}/banned-players.json ]; then mv ${DATA_PATH}/banned-players.json ${DATA_PATH}/Vanilla; fi && \
if [ -e ${DATA_PATH}/logs ]; then mv ${DATA_PATH}/logs ${DATA_PATH}/Vanilla; fi && \
if [ -e ${DATA_PATH}/ops.json ]; then mv ${DATA_PATH}/ops.json ${DATA_PATH}/Vanilla; fi && \
if [ -e ${DATA_PATH}/usercache.json ]; then mv ${DATA_PATH}/usercache.json ${DATA_PATH}/Vanilla; fi && \
if [ -e ${DATA_PATH}/whitelist.json ]; then mv ${DATA_PATH}/whitelist.json ${DATA_PATH}/Vanilla; fi && \
if [ -e ${DATA_PATH}/world ]; then mv ${DATA_PATH}/world ${DATA_PATH}/Vanilla; fi && \
if [ -e ${DATA_PATH}/world_nether ]; then mv ${DATA_PATH}/world_nether ${DATA_PATH}/Vanilla; fi && \
if [ -e ${DATA_PATH}/world_the_end ]; then mv ${DATA_PATH}/world_the_end ${DATA_PATH}/Vanilla; fi && \
mkdir -p ${DATA_PATH}/PlasmoVoice && \
if [ -e ${DATA_PATH}/pv-voice_mutes.json ]; then mv ${DATA_PATH}/pv-voice_mutes.json ${DATA_PATH}/PlasmoVoice; fi && \
# Create and switch to user with desired UID and GID. # Create and switch to user with desired UID and GID.
# All processes that create/change files in ${DATA_PATH} # All processes that create/change files in ${DATA_PATH}
# must be run under this user. # must be run under this user.