File size: 353 Bytes
ea0a22f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: "3.9"

services:
  proxy:
    build: .
    ports:
      - "7860:7860"
    volumes:
      - proxy_data:/data
    environment:
      - DATABASE_URL=sqlite:////data/proxy.db
      - SECRET_KEY=CHANGE_ME_use_a_long_random_string_here
      - FERNET_KEY=
      - ACCESS_TOKEN_EXPIRE_MINUTES=10080
    restart: unless-stopped

volumes:
  proxy_data: