12 lines
507 B
SQL
12 lines
507 B
SQL
INSERT INTO credentials (id, name, credential_type, is_default, created_at)
|
|
VALUES (X'00000000000000000000000000000000', 'docker_test', 'docker', 0, 1726756380);
|
|
|
|
INSERT INTO docker_credentials (id, server_url, username, secret_enc, nonce)
|
|
VALUES (
|
|
X'00000000000000000000000000000000',
|
|
'https://registry.jfmonty2.com',
|
|
'joe@jfmonty2.com',
|
|
X'C0B36EE54539D4113A8F73E99FB96B2BF4D87E91F7C3B48256C07E83E3E7EC738888B2FDE2B4DB0BE48BEFDE',
|
|
X'C5F7F627BBE09A1BB275BE8D2390596C76143881A7766E60'
|
|
);
|