File size: 637 Bytes
36df2e0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
33
version: "3.9"

services:
  postgres:
    image: postgres:16
    restart: always
    environment:
      POSTGRES_USER: unkey
      POSTGRES_PASSWORD: unkey
      POSTGRES_DB: unkey
    volumes:
      - pgdata:/var/lib/postgresql/data

  redis:
    image: redis:7
    restart: always

  unkey:
    image: ghcr.io/unkeyed/unkey:latest
    depends_on:
      - postgres
      - redis
    ports:
      - "8080:8080"
    environment:
      DATABASE_URL: postgres://unkey:unkey@postgres:5432/unkey
      REDIS_URL: redis://redis:6379
      ROOT_KEY: unkey_radison_master_key
      PUBLIC_URL: https://radison-unkey.hf.space

volumes:
  pgdata: