Giter Site home page Giter Site logo

Comments (29)

porowns avatar porowns commented on August 14, 2024

We're not doing any manual configuration file editing anymore, this project is a single image at https://hub.docker.com/repository/docker/kryptedgaming/pathfinder. The user should not be building the image, things must be done with the environment variables

See https://github.com/KryptedGaming/pathfinder-docker/blob/master/entrypoint.sh

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

so then I need to find a way to edit the map settings.

because under personal the settings are the same name as under corp

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024

You'd have to go through the lines until you're in the personal section and then do your modifications if you're not able to directly use sed on the file

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024

Or build an extra file with the shell script and move it into the conf folder

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

welp

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

Or build an extra file with the shell script and move it into the conf folder

that is what I am trying to do

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

but I cant seem to get the system to recognize the file

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024

manually edited and imported with the Dockerfile this is the wrong way to approach it, though. You need to modify the entrypoint script to cat out lines and build up the file you want

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024

You'll need to modify the docker-compose.yml to do build: . instead of pulling from the image

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024

OR you can build the image locally docker build . -t kryptedgaming/pathfinder:latest and it should pick that up

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024
version: '2.0'

services:
    db:
        image: mysql:5.7
        volumes:
            - database:/var/lib/mysql
            - ./config/start.sql:/docker-entrypoint-initdb.d/start.sql
        restart: always
        environment:
          MYSQL_ROOT_PASSWORD: ${MYSQL_PASSWORD}
          MYSQL_USER: "${MYSQL_USER}"

    pathfinder:
        build: .
        image: kryptedgaming/pathfinder:latest
        env_file: .env
        ports:
            - "8000:80"

volumes:
    database: {}

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

so if I change the entrypoint.sh to cat out a file I have localy into /var/www/pathfinder/conf/pathfinder.ini it should work provided I can make that file

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024

Yeah you'd have to cat out lines/etc. The whole point of the rewrite is so that the user will never be building the images, they simply pull the images from kryptedgaming's repository and fill out the environment variables. This means the only files they will have is the docker compose file and environment file. It's the "proper" way to do things

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

can the entrypoint script copy a file from the repo into the container? or does it not have access to view the outside HDD

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024

No, the entrypoint script exists in the container. So what you'd have to do is something like:
echo "line" >> /var/www/pathfinder/conf/pathfinder.ini
echo "line 2" >> /var/www/pathfinder/conf/pathfinder.ini
echo "line 3" >>/var/www/pathfinder/conf/pathfinder.ini

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

ew......

looks like I have my work cut out for me

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024

That's why official images have huge entrypoint scripts, lots of logic in there to make it as easy as possible for the user:
https://github.com/docker-library/wordpress/blob/master/docker-entrypoint.sh

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024

What lines in the ini are you trying to edit?

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024
[PATHFINDER.MAP.PRIVATE]
LIFETIME                        =   60
MAX_COUNT                       =   3
MAX_SHARED                      =   10
MAX_SYSTEMS                     =   50
LOG_ACTIVITY_ENABLED            =   1
LOG_HISTORY_ENABLED             =   1
SEND_HISTORY_SLACK_ENABLED      =   0
SEND_RALLY_SLACK_ENABLED        =   1
SEND_HISTORY_DISCORD_ENABLED    =   0
SEND_RALLY_DISCORD_ENABLED      =   1
SEND_RALLY_Mail_ENABLED         =   0

[PATHFINDER.MAP.CORPORATION]
LIFETIME                        =   99999
MAX_COUNT                       =   5
MAX_SHARED                      =   4
MAX_SYSTEMS                     =   100
LOG_ACTIVITY_ENABLED            =   1
LOG_HISTORY_ENABLED             =   1
SEND_HISTORY_SLACK_ENABLED      =   1
SEND_RALLY_SLACK_ENABLED        =   1
SEND_HISTORY_DISCORD_ENABLED    =   1
SEND_RALLY_DISCORD_ENABLED      =   1
SEND_RALLY_Mail_ENABLED         =   0

[PATHFINDER.MAP.ALLIANCE]
LIFETIME                        =   99999
MAX_COUNT                       =   4
MAX_SHARED                      =   2
MAX_SYSTEMS                     =   100
LOG_ACTIVITY_ENABLED            =   0
LOG_HISTORY_ENABLED             =   1
SEND_HISTORY_SLACK_ENABLED      =   1
SEND_RALLY_SLACK_ENABLED        =   1
SEND_HISTORY_DISCORD_ENABLED    =   1
SEND_RALLY_DISCORD_ENABLED      =   1
SEND_RALLY_Mail_ENABLED         =   0

Specifically the ones under [PATHFINDER.MAP.PRIVATE]

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

that would be the start of what I want to edit
and the most annoying set of those settings

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024

It's more of a crime that he's made these variables the same name...

Currently it looks like all of them have different values, and could easily be replaced with sed. For PRIVATE you'll just have to search for LIFETIME with 60 in it, etc. Every time the container is restarted they start over again.

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

I think I should be able to do that....

;[PATHFINDER.ROLES]
;CHARACTER.0.ID = 123456789
;CHARACTER.0.ROLE = SUPER
;CHARACTER.1.ID = 1122334455
;CHARACTER.1.ROLE = CORPORATION

this is the next block I'm gonna be trying to edit, those are commented out by default.

from pathfinder-docker.

porowns avatar porowns commented on August 14, 2024

You would just sed those with the same line without the ;

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

ok

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

I have no clue how you did this, I cannot get the system to build.

NAME=Pathfinder
PrivateLIFETIME=60
PrivateMAX_COUNT=3
PrivateMAX_SHARED=10
PrivateMAX_SYSTEMS=50
PrivateLOG_ACTIVITY_ENABLED=1
PrivateLOG_HISTORY_ENABLED=1
PrivateSEND_HISTORY_SLACK_ENABLED=0
PrivateSEND_RALLY_SLACK_ENABLED=1
PrivateSEND_HISTORY_DISCORD_ENABLED=0
PrivateSEND_RALLY_DISCORD_ENABLED=1
PrivateSEND_RALLY_Mail_ENABLED=0

was added to the .env file and

echo "[PATHFINDER]" >> /var/www/pathfinder/conf/pathfinder.ini
echo "NAME                        =   ${NAME}" >> /var/www/pathfinder/conf/pathfinder.ini
echo "" >> /var/www/pathfinder/conf/pathfinder.ini
echo "[PATHFINDER.MAP.PRIVATE]" >> /var/www/pathfinder/conf/pathfinder.ini
echo "LIFETIME                        =   ${PrivateLIFETIME}" >> /var/www/pathfinder/conf/pathfinder.ini
echo "MAX_COUNT                       =   ${PrivateMAX_COUNT}" >> /var/www/pathfinder/conf/pathfinder.ini
echo "MAX_SHARED                        =   ${PrivateMAX_SHARED}" >> /var/www/pathfinder/conf/pathfinder.ini
echo "MAX_SYSTEMS                        =   ${PrivateMAX_SYSTEMS}" >> /var/www/pathfinder/conf/pathfinder.ini
echo "LOG_ACTIVITY_ENABLED                        =   ${PrivateLOG_ACTIVITY_ENABLED}" >> /var/www/pathfinder/conf/pathfinder.ini
echo "LOG_HISTORY_ENABLED                        =   ${PrivateLOG_HISTORY_ENABLED}" >> /var/www/pathfinder/conf/pathfinder.ini
echo "SEND_HISTORY_SLACK_ENABLED                        =   ${PrivateSEND_HISTORY_SLACK_ENABLED}" >> /var/www/pathfinder/conf/pathfinder.ini
echo "SEND_RALLY_SLACK_ENABLED                        =   ${PrivateSEND_RALLY_SLACK_ENABLED}" >> /var/www/pathfinder/conf/pathfinder.ini
echo "SEND_HISTORY_DISCORD_ENABLED                        =   ${PrivateSEND_HISTORY_DISCORD_ENABLED}" >> /var/www/pathfinder/conf/pathfinder.ini
echo "SEND_RALLY_DISCORD_ENABLED                        =   ${PrivateSEND_RALLY_DISCORD_ENABLED}" >> /var/www/pathfinder/conf/pathfinder.ini
echo "SEND_RALLY_Mail_ENABLED                        =   ${PrivateSEND_RALLY_Mail_ENABLED}" >> /var/www/pathfinder/conf/pathfinder.ini

was added to the entrypoint.sh file but when I try to build the container, it fails for missing files or directories.

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

also
RUN mkdir /var/www/pathfinder/conf/
was added to the dockerfile

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

I have tried both methods of building the container

docker build . -t kryptedgaming/pathfinder:latest errors when getting updates
and editing the docker-compose.yaml errors out when cloning pathfinder.

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

managed to get to the part where it tries to run the entrypoint.sh script and here is the error I get

Creating pathfinder-docker_db_1         ... done
Creating pathfinder-docker_pathfinder_1 ... done
Attaching to pathfinder-docker_pathfinder_1, pathfinder-docker_db_1
pathfinder_1  | standard_init_linux.go:211: exec user process caused "no such file or directory"
db_1          | 2019-12-22 02:01:29+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 5.7.28-1debian9 started.
db_1          | 2019-12-22 02:01:29+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
db_1          | 2019-12-22 02:01:29+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 5.7.28-1debian9 started.
db_1          | 2019-12-22 02:01:29+00:00 [Note] [Entrypoint]: Initializing database files
db_1          | 2019-12-22T02:01:29.879357Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
pathfinder-docker_pathfinder_1 exited with code 1
db_1          | 2019-12-22T02:01:30.287712Z 0 [Warning] InnoDB: New log files created, LSN=45790
db_1          | 2019-12-22T02:01:30.336005Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
db_1          | 2019-12-22T02:01:30.409047Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: f89262fc-245e-11ea-86c2-0242c0a85003.
db_1          | 2019-12-22T02:01:30.415406Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.        
db_1          | 2019-12-22T02:01:30.811494Z 0 [Warning] CA certificate ca.pem is self signed.
db_1          | 2019-12-22T02:01:30.960960Z 1 [Warning] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
db_1          | 2019-12-22 02:01:34+00:00 [Note] [Entrypoint]: Database files initialized
db_1          | 2019-12-22 02:01:34+00:00 [Note] [Entrypoint]: Starting temporary server
db_1          | 2019-12-22 02:01:34+00:00 [Note] [Entrypoint]: Waiting for server startup
db_1          | 2019-12-22T02:01:35.111587Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
db_1          | 2019-12-22T02:01:35.112713Z 0 [Note] mysqld (mysqld 5.7.28) starting as process 80 ...
db_1          | 2019-12-22T02:01:35.115757Z 0 [Note] InnoDB: PUNCH HOLE support available
db_1          | 2019-12-22T02:01:35.115786Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
db_1          | 2019-12-22T02:01:35.115790Z 0 [Note] InnoDB: Uses event mutexes
db_1          | 2019-12-22T02:01:35.115793Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
db_1          | 2019-12-22T02:01:35.115795Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db_1          | 2019-12-22T02:01:35.115798Z 0 [Note] InnoDB: Using Linux native AIO
db_1          | 2019-12-22T02:01:35.116201Z 0 [Note] InnoDB: Number of pools: 1
db_1          | 2019-12-22T02:01:35.116416Z 0 [Note] InnoDB: Using CPU crc32 instructions
db_1          | 2019-12-22T02:01:35.117733Z 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M       
db_1          | 2019-12-22T02:01:35.125841Z 0 [Note] InnoDB: Completed initialization of buffer pool
db_1          | 2019-12-22T02:01:35.127850Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
db_1          | 2019-12-22T02:01:35.139098Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
db_1          | 2019-12-22T02:01:35.150039Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
db_1          | 2019-12-22T02:01:35.150103Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
db_1          | 2019-12-22T02:01:35.168241Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
db_1          | 2019-12-22T02:01:35.169017Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
db_1          | 2019-12-22T02:01:35.169051Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
db_1          | 2019-12-22T02:01:35.170193Z 0 [Note] InnoDB: 5.7.28 started; log sequence number 2628227
db_1          | 2019-12-22T02:01:35.170543Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
db_1          | 2019-12-22T02:01:35.170824Z 0 [Note] Plugin 'FEDERATED' is disabled.
db_1          | 2019-12-22T02:01:35.171952Z 0 [Note] InnoDB: Buffer pool(s) load completed at 191222  2:01:35
db_1          | 2019-12-22T02:01:35.175699Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
db_1          | 2019-12-22T02:01:35.175742Z 0 [Note] Skipping generation of SSL certificates as certificate files are present in data directory.
db_1          | 2019-12-22T02:01:35.176361Z 0 [Warning] CA certificate ca.pem is self signed.
db_1          | 2019-12-22T02:01:35.176413Z 0 [Note] Skipping generation of RSA key pair as key files are present in data directory.
db_1          | 2019-12-22T02:01:35.182597Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
db_1          | 2019-12-22T02:01:35.188769Z 0 [Note] Event Scheduler: Loaded 0 events
db_1          | 2019-12-22T02:01:35.189030Z 0 [Note] mysqld: ready for connections.
db_1          | Version: '5.7.28'  socket: '/var/run/mysqld/mysqld.sock'  port: 0  MySQL Community Server (GPL)
db_1          | 2019-12-22 02:01:35+00:00 [Note] [Entrypoint]: Temporary server started.
db_1          | Warning: Unable to load '/usr/share/zoneinfo/iso3166.tab' as time zone. Skipping it.
db_1          | Warning: Unable to load '/usr/share/zoneinfo/leap-seconds.list' as time zone. Skipping it.
db_1          | Warning: Unable to load '/usr/share/zoneinfo/zone.tab' as time zone. Skipping it.
db_1          | Warning: Unable to load '/usr/share/zoneinfo/zone1970.tab' as time zone. Skipping it.
db_1          | 
db_1          | 2019-12-22 02:01:38+00:00 [Note] [Entrypoint]: /usr/local/bin/docker-entrypoint.sh: running /docker-entrypoint-initdb.d/start.sql
db_1          | 
db_1          |
db_1          | 2019-12-22 02:01:38+00:00 [Note] [Entrypoint]: Stopping temporary server
db_1          | 2019-12-22T02:01:38.469930Z 0 [Note] Giving 0 client threads a chance to die gracefully
db_1          | 2019-12-22T02:01:38.469964Z 0 [Note] Shutting down slave threads
db_1          | 2019-12-22T02:01:38.469969Z 0 [Note] Forcefully disconnecting 0 remaining clients
db_1          | 2019-12-22T02:01:38.469973Z 0 [Note] Event Scheduler: Purging the queue. 0 events
db_1          | 2019-12-22T02:01:38.470300Z 0 [Note] Binlog end
db_1          | 2019-12-22T02:01:38.470707Z 0 [Note] Shutting down plugin 'ngram'
db_1          | 2019-12-22T02:01:38.470732Z 0 [Note] Shutting down plugin 'partition'
db_1          | 2019-12-22T02:01:38.470736Z 0 [Note] Shutting down plugin 'BLACKHOLE'
db_1          | 2019-12-22T02:01:38.470739Z 0 [Note] Shutting down plugin 'ARCHIVE'
db_1          | 2019-12-22T02:01:38.470741Z 0 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA'
db_1          | 2019-12-22T02:01:38.470759Z 0 [Note] Shutting down plugin 'MRG_MYISAM'
db_1          | 2019-12-22T02:01:38.470770Z 0 [Note] Shutting down plugin 'MyISAM'
db_1          | 2019-12-22T02:01:38.470776Z 0 [Note] Shutting down plugin 'INNODB_SYS_VIRTUAL'
db_1          | 2019-12-22T02:01:38.470779Z 0 [Note] Shutting down plugin 'INNODB_SYS_DATAFILES'
db_1          | 2019-12-22T02:01:38.470781Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESPACES'
db_1          | 2019-12-22T02:01:38.470783Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS'
db_1          | 2019-12-22T02:01:38.470785Z 0 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN'
db_1          | 2019-12-22T02:01:38.470787Z 0 [Note] Shutting down plugin 'INNODB_SYS_FIELDS'
db_1          | 2019-12-22T02:01:38.470789Z 0 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS'
db_1          | 2019-12-22T02:01:38.470791Z 0 [Note] Shutting down plugin 'INNODB_SYS_INDEXES'
db_1          | 2019-12-22T02:01:38.470793Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS'
db_1          | 2019-12-22T02:01:38.470795Z 0 [Note] Shutting down plugin 'INNODB_SYS_TABLES'
db_1          | 2019-12-22T02:01:38.470797Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE'
db_1          | 2019-12-22T02:01:38.470799Z 0 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE'
db_1          | 2019-12-22T02:01:38.470801Z 0 [Note] Shutting down plugin 'INNODB_FT_CONFIG'
db_1          | 2019-12-22T02:01:38.470803Z 0 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED'
db_1          | 2019-12-22T02:01:38.470805Z 0 [Note] Shutting down plugin 'INNODB_FT_DELETED'
db_1          | 2019-12-22T02:01:38.470807Z 0 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD'
db_1          | 2019-12-22T02:01:38.470809Z 0 [Note] Shutting down plugin 'INNODB_METRICS'
db_1          | 2019-12-22T02:01:38.470811Z 0 [Note] Shutting down plugin 'INNODB_TEMP_TABLE_INFO'
db_1          | 2019-12-22T02:01:38.470814Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS'
db_1          | 2019-12-22T02:01:38.470816Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU'
db_1          | 2019-12-22T02:01:38.470818Z 0 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE'
db_1          | 2019-12-22T02:01:38.470820Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET'
db_1          | 2019-12-22T02:01:38.470822Z 0 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX'
db_1          | 2019-12-22T02:01:38.470824Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET'
db_1          | 2019-12-22T02:01:38.470826Z 0 [Note] Shutting down plugin 'INNODB_CMPMEM'
db_1          | 2019-12-22T02:01:38.470828Z 0 [Note] Shutting down plugin 'INNODB_CMP_RESET'
db_1          | 2019-12-22T02:01:38.470830Z 0 [Note] Shutting down plugin 'INNODB_CMP'
db_1          | 2019-12-22T02:01:38.470832Z 0 [Note] Shutting down plugin 'INNODB_LOCK_WAITS'
db_1          | 2019-12-22T02:01:38.470834Z 0 [Note] Shutting down plugin 'INNODB_LOCKS'
db_1          | 2019-12-22T02:01:38.470836Z 0 [Note] Shutting down plugin 'INNODB_TRX'
db_1          | 2019-12-22T02:01:38.470838Z 0 [Note] Shutting down plugin 'InnoDB'
db_1          | 2019-12-22T02:01:38.471090Z 0 [Note] InnoDB: FTS optimize thread exiting.
db_1          | 2019-12-22T02:01:38.471538Z 0 [Note] InnoDB: Starting shutdown...
db_1          | 2019-12-22T02:01:38.571975Z 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
db_1          | 2019-12-22T02:01:38.572167Z 0 [Note] InnoDB: Buffer pool(s) dump completed at 191222  2:01:38
db_1          | 2019-12-22T02:01:40.307021Z 0 [Note] InnoDB: Shutdown completed; log sequence number 12440250
db_1          | 2019-12-22T02:01:40.309481Z 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
db_1          | 2019-12-22T02:01:40.309533Z 0 [Note] Shutting down plugin 'MEMORY'
db_1          | 2019-12-22T02:01:40.309539Z 0 [Note] Shutting down plugin 'CSV'
db_1          | 2019-12-22T02:01:40.309542Z 0 [Note] Shutting down plugin 'sha256_password'
db_1          | 2019-12-22T02:01:40.309544Z 0 [Note] Shutting down plugin 'mysql_native_password'
db_1          | 2019-12-22T02:01:40.309665Z 0 [Note] Shutting down plugin 'binlog'
db_1          | 2019-12-22T02:01:40.311888Z 0 [Note] mysqld: Shutdown complete
db_1          | 
db_1          | 2019-12-22 02:01:40+00:00 [Note] [Entrypoint]: Temporary server stopped
db_1          |
db_1          | 2019-12-22 02:01:40+00:00 [Note] [Entrypoint]: MySQL init process done. Ready for start up.
db_1          |
db_1          | 2019-12-22T02:01:40.651453Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
db_1          | 2019-12-22T02:01:40.652549Z 0 [Note] mysqld (mysqld 5.7.28) starting as process 1 ...
db_1          | 2019-12-22T02:01:40.655432Z 0 [Note] InnoDB: PUNCH HOLE support available
db_1          | 2019-12-22T02:01:40.655464Z 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
db_1          | 2019-12-22T02:01:40.655469Z 0 [Note] InnoDB: Uses event mutexes
db_1          | 2019-12-22T02:01:40.655472Z 0 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
db_1          | 2019-12-22T02:01:40.655475Z 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
db_1          | 2019-12-22T02:01:40.655478Z 0 [Note] InnoDB: Using Linux native AIO
db_1          | 2019-12-22T02:01:40.655705Z 0 [Note] InnoDB: Number of pools: 1
db_1          | 2019-12-22T02:01:40.655802Z 0 [Note] InnoDB: Using CPU crc32 instructions
db_1          | 2019-12-22T02:01:40.656939Z 0 [Note] InnoDB: Initializing buffer pool, total size = 128M, instances = 1, chunk size = 128M       
db_1          | 2019-12-22T02:01:40.664589Z 0 [Note] InnoDB: Completed initialization of buffer pool
db_1          | 2019-12-22T02:01:40.666595Z 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority().
db_1          | 2019-12-22T02:01:40.677911Z 0 [Note] InnoDB: Highest supported file format is Barracuda.
db_1          | 2019-12-22T02:01:40.688549Z 0 [Note] InnoDB: Creating shared tablespace for temporary tables
db_1          | 2019-12-22T02:01:40.688597Z 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
db_1          | 2019-12-22T02:01:40.703709Z 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
db_1          | 2019-12-22T02:01:40.704329Z 0 [Note] InnoDB: 96 redo rollback segment(s) found. 96 redo rollback segment(s) are active.
db_1          | 2019-12-22T02:01:40.704357Z 0 [Note] InnoDB: 32 non-redo rollback segment(s) are active.
db_1          | 2019-12-22T02:01:40.704675Z 0 [Note] InnoDB: Waiting for purge to start
db_1          | 2019-12-22T02:01:40.755104Z 0 [Note] InnoDB: 5.7.28 started; log sequence number 12440250
db_1          | 2019-12-22T02:01:40.755392Z 0 [Note] Plugin 'FEDERATED' is disabled.
db_1          | 2019-12-22T02:01:40.755653Z 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
db_1          | 2019-12-22T02:01:40.758417Z 0 [Note] InnoDB: Buffer pool(s) load completed at 191222  2:01:40
db_1          | 2019-12-22T02:01:40.760086Z 0 [Note] Found ca.pem, server-cert.pem and server-key.pem in data directory. Trying to enable SSL support using them.
db_1          | 2019-12-22T02:01:40.760128Z 0 [Note] Skipping generation of SSL certificates as certificate files are present in data directory. 
db_1          | 2019-12-22T02:01:40.760690Z 0 [Warning] CA certificate ca.pem is self signed.
db_1          | 2019-12-22T02:01:40.760734Z 0 [Note] Skipping generation of RSA key pair as key files are present in data directory.
db_1          | 2019-12-22T02:01:40.761026Z 0 [Note] Server hostname (bind-address): '*'; port: 3306
db_1          | 2019-12-22T02:01:40.761066Z 0 [Note] IPv6 is available.
db_1          | 2019-12-22T02:01:40.761076Z 0 [Note]   - '::' resolves to '::';
db_1          | 2019-12-22T02:01:40.761084Z 0 [Note] Server socket created on IP: '::'.
db_1          | 2019-12-22T02:01:40.769135Z 0 [Warning] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
db_1          | 2019-12-22T02:01:40.774982Z 0 [Note] Event Scheduler: Loaded 0 events
db_1          | 2019-12-22T02:01:40.775123Z 0 [Note] mysqld: ready for connections.
db_1          | Version: '5.7.28'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MySQL Community Server (GPL)

from pathfinder-docker.

november781 avatar november781 commented on August 14, 2024

I was defeated by line endings.... Damn windows

from pathfinder-docker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.