summaryrefslogtreecommitdiff
path: root/internal/suites/example/compose/mysql/compose.yml
blob: abd5456acc15df9de494a7d50e163d0d133b2a6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
services:
  mysql:
    image: 'mysql:9.2'
    environment:
      MYSQL_ROOT_PASSWORD: 'rootpassword'
      MYSQL_USER: 'admin'
      MYSQL_PASSWORD: 'password'
      MYSQL_DATABASE: 'authelia'
    networks:
      authelianet: {}
...