services: btcdata: build: ../btcdata restart: unless-stopped ports: - "4100:4100" environment: BTCDATA_PORT: "4100" JDBC_URL: "jdbc:postgresql://postgres:5432/btcprod?user=postgres&password=ratata,123" CORS_ORIGIN: "http://localhost:4040" extra_hosts: - "postgres:host-gateway" app: build: . restart: unless-stopped ports: - "4040:4040" environment: BTCDATA_URL: "http://btcdata:4100" depends_on: - btcdata