Skip to content

Instantly share code, notes, and snippets.

@Forinil
Forinil / # Installing Docker Compose V2.md
Last active September 2, 2022 12:29
Manual installation of Docker Compose V2 on Linux

Manual installation of Docker Compose V2 on Linux

For current user

COMPOSE_VERSION=v2.10.2
wget -O docker-compose https://github.com/docker/compose/releases/download/$COMPOSE_VERSION/docker-compose-linux-x86_64
chmod +x docker-compose

mkdir -p $HOME/.docker/cli-plugins

Installing Arch linux with EFI

  1. Change keyboard layout:

    • loadkeys pl
  2. Verify boot mode:

    • ls /sys/firmware/efi/efivars (If the directory exist your computer supports EFI)
  3. Ping some site on the Internet to verify connection:

  • ping archlinux.org
@Configuration
@EnableConfigurationProperties(H2ConfigProperties.class)
public class H2Config extends H2ConsoleAutoConfiguration {
private static final String FIELD_NAME = "GENERIC";
private static final String FIELD_MODIFIERS = "modifiers";
@Value("${spring.datasource.driver-class-name}")
private String connectionDriver;
@Value("${spring.datasource.url}")