# This file is managed by gitlab-ctl. Manual changes will be
# erased! To change the contents below, edit /etc/gitlab/gitlab.rb
# and run `sudo gitlab-ctl reconfigure`.
## Lines starting with two hashes (##) are comments with information.
## Lines starting with one hash (#) are configuration parameters that can be uncommented.
##
###################################
## configuration ##
###################################
server { ## HTTPS server
listen *:;
server_name ;
server_tokens off; ## Don't show the nginx version number, a security best practice
client_max_body_size 0;
chunked_transfer_encoding on;
## Real IP Module Config
## http://nginx.org/en/docs/http/ngx_http_realip_module.html
## HSTS Config
## https://www.nginx.com/blog/http-strict-transport-security-hsts-and-nginx/
add_header Strict-Transport-Security "max-age=63072000";
access_log /var/log/gitlab/nginx/gitlab_registry_access.log gitlab_access;
error_log /var/log/gitlab/nginx/gitlab_registry_error.log error;
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 900;
proxy_cache off;
proxy_buffering off;
proxy_request_buffering off;
proxy_http_version 1.1;
proxy_pass http://;
}
} ## end HTTPS server> Task :com.springapp.springapp.SpringappApplication.main()
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v4.0.5)
2026-04-14T15:42:23.584+03:00 INFO 14888 --- [springapp] [ main] c.s.springapp.SpringappApplication : Starting SpringappApplication using Java 23 with PID 14888 (J:\springapp\build\classes\java\main started by kuk in J:\springapp)
2026-04-14T15:42:23.586+03:00 INFO 14888 --- [springapp] [ main] c.s.springapp.SpringappApplication : No active profile set, falling back to 1 default profile: "default"
2026-04-14T15:42:23.887+03:00 INFO 14888 --- [springapp] [ main] c.s.springapp.SpringappApplication : Started SpringappApplication in 0.586 seconds (process running for 0.842)
Process finished with exit code 0name: dockerimages
services:
myapp:
image: java.myapp:1.0.2
networks:
default: null
ports:
- mode: ingress
target: 47500
published: "47500"
protocol: tcp
pull_policy: never
volumes:
- type: bind
source: /
target: /home/radxa/data
bind: {} # <- Вот это поле я не понимаю откуда берётся и что с ним делать
networks:
default:
name: dockerimages_default --
-- PostgreSQL database dump
--
-- Dumped from database version 17.4
-- Dumped by pg_dump version 17.4
-- Started on 2025-05-10 18:20:46
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET transaction_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
--
-- TOC entry 228 (class 1259 OID 24597)
-- Name: accounts; Type: TABLE; Schema: acman; Owner: pang_acman
--
CREATE TABLE acman.accounts (
id integer NOT NULL,
firstname character(100),
nickname character(100),
email character(100)
)
PARTITION BY RANGE (id);
ALTER TABLE acman.accounts OWNER TO pang_acman;
--
-- TOC entry 4831 (class 0 OID 0)
-- Dependencies: 228
-- Name: TABLE accounts; Type: COMMENT; Schema: acman; Owner: pang_acman
--
COMMENT ON TABLE acman.accounts IS 'для надра4ивания опыта с базами';
--
-- TOC entry 4680 (class 2606 OID 24601)
-- Name: accounts accounts_pkey; Type: CONSTRAINT; Schema: acman; Owner: pang_acman
--
ALTER TABLE ONLY acman.accounts
ADD CONSTRAINT accounts_pkey PRIMARY KEY (id);
-- Completed on 2025-05-10 18:20:46
--
-- PostgreSQL database dump complete
-- @Entity
@Setter
@Getter
@AllArgsConstructor
@NoArgsConstructor
@Table(name="accounts", schema = "acman")
public class PsqlRow
{
@Id
@Column(name = "id", nullable = false) //Не должно быть null, это ключ
private Long id;
@Basic
@Column(name = "email")
private String email;
@Basic
@Column(name = "nickname")
private String nickname;
@Basic
@Column(name = "firstname")
private String firstname;
}13:58:14 [INFO ] >> 102 svema0705 Ilya svema0705@mail.mail
Hibernate:
insert
into
acman.accounts
(email, firstname, nickname, id)
values
(?, ?, ?, ?)
^^^^^^^^^^^^ почему так?
13:58:14 [INFO ] >> HHH10001008: Cleaning up connection pool [jdbc:postgresql://192.168.7.231:36000/accounts]
Дело было в загрузчике, я его обновил и затем заменил armbian на свой образ dietpi с последующим исправлением диска
В stacktrace были только адреса, к слову, без пояснений