Linked Questions
10 questions linked to/from A YAML file cannot contain tabs as indentation
1
vote
3
answers
11k
views
How can I use doctrine method inside my service (Symfony 4)?
I created my first own service in Symfony :
// src/Service/PagesGenerator.php
namespace App\Service;
class PagesGenerator
{
public function getPages()
{
$page = $this->getDoctrine(...
5
votes
1
answer
20k
views
docker-compose - service 'volumes' must be a mapping not an array
before you mark this question as duplicate, I have looked in a lot of threads and none of them are solving the problem.
here is my docker compose file:
version: '3'
services:
# nginx
nginx:
...
6
votes
3
answers
6k
views
Could not parse .travis.yml
I'm trying to create CI pipeline with GitHub, Travis CI and AWS ECS. When I'm push commit to master branch, I'm getting error in travis CI: 'Could not parse .travis.yml'. I can't figure out, where is ...
4
votes
2
answers
12k
views
How to unmarshal a yaml array?
I have next yaml, if I validate it in online yaml website, it said it's valid:
- {"foo": "1", "bar": "2"}
Then, I write a code to parse the value 1 and 2 from ...
0
votes
1
answer
2k
views
Go YAML unmarshal doesn't decode all the object structure to a generic interface. Any ideas why?
Why wouldn't the following Go program work? The map is empty after the Unmarshal. Is there any changes that I could do to deserialize this correctly? Or should I end up using yaml.Node?
package main
...
1
vote
1
answer
1k
views
how to configure and run Reaper to repair cassandra in linux( centos environment)
I'm trying to install and run Reaper 1.4 on my centos VM. And followed the same installation step as in given video (https://www.youtube.com/watch?v=0dub29BgwPI), but still no success in getting ...
0
votes
1
answer
1k
views
Docker-compose: Issue while running the spring boot enabled and spring cloud config application
I want to run the Spring Boot enabled and spring cloud config project to deploy to Docker. The below is the docker-compose.yml file. But I'm getting the following error while running the file.
Error:...
-1
votes
1
answer
342
views
Parse tab intended list to JSON with jq
I have a legacy cli tool which outputs a structured list with sub-items intended with a tab (stackoverflow won't let me put tabs here so I replaced them with 4 spaces in this example).
Heading One:
...
0
votes
3
answers
261
views
Sylius Customizing Models with error class not found in namespaces
I followed the guideline on Sylius site for customizing models:
http://docs.sylius.com/en/1.0/customization/model.html
When I run:
php bin/console doctrine:schema:update --force
or
php bin/console ...
0
votes
0
answers
73
views
Cant install stable version of Flare error in first line
Fresh flutter project, getting error when adding "flare_flutter: ^1.5.1", to pubspec.yaml.
i have flutter v1.5.4-hotfix.2
tried the dev branch of flare
in my .yaml file
dependencies:
flutter:
...