jump to content
Snippets and tips
  1. Home
  2. Holiday
  3. Posts
  4. Tools
  5. Tags
  6. Categories

Useful docker compose snippets

Some used snippets for common tasks

Mariadb container and more

Docker compose snippets that can be reused without much further image build.

Mariadb #

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
services:
  mariadb:
    image: mariadb
    networks:
      backbone:
        ipv4_address: 192.168.1.3
    restart: always
    environment:
      MARIADB_ROOT_PASSWORD: pw
    volumes:
      - mysql-data:/var/lib/mysql

volumes:
  mysql-data:

networks:
  backbone:
    name: backbone
    external: true