aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yaml
blob: e009ba0df8944c866fbe9df4e145c2d5dbe7d73d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
version: "3"

services:
  # postgres:
  #   image: docker.io/postgis/postgis:14-3.3
  #   environment:
  #     - "POSTGRES_USER=artemis"
  #     - "POSTGRES_PASSWORD=${POSTGRES_PASSWORD}"
  #     - "POSTGRES_DB=artemis"
  #     - "PGDATA=/var/lib/postgresql/data/pgdata"
  #   ports:
  #     - 127.0.0.1:5432:5432
  #   volumes:
  #     - type: volume
  #       source: postgres
  #       target: /var/lib/postgresql/data/pgdata
  #     - ./postgres.conf:/etc/postgresql/postgresql.conf:ro

  meilisearch:
    image: docker.io/getmeili/meilisearch:v1.0
    environment:
      - "MEILI_HTTP_PAYLOAD_SIZE_LIMIT=10Gb"
    ports:
      - 127.0.0.1:7700:7700
    volumes:
      - type: volume
        source: meilisearch
        target: /meili_data

volumes:
  # postgres:
  meilisearch: