-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (25 loc) · 815 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
29 lines (25 loc) · 815 Bytes
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
services:
antigravity2api:
build:
context: .
dockerfile: Dockerfile
container_name: antigravity2api
ports:
- "${AG2API_PORT:-3000}:${AG2API_PORT:-3000}"
environment:
# App config
AG2API_HOST: "${AG2API_HOST:-}"
AG2API_PORT: "${AG2API_PORT:-}"
AG2API_API_KEYS: "${AG2API_API_KEYS:-}"
AG2API_PROXY_ENABLED: "${AG2API_PROXY_ENABLED:-}"
AG2API_PROXY_URL: "${AG2API_PROXY_URL:-}"
AG2API_DEBUG: "${AG2API_DEBUG:-}"
# Optional: override OAuth client (otherwise uses built-in defaults)
# GOOGLE_OAUTH_CLIENT_ID: "${GOOGLE_OAUTH_CLIENT_ID:-}"
# GOOGLE_OAUTH_CLIENT_SECRET: "${GOOGLE_OAUTH_CLIENT_SECRET:-}"
volumes:
- ./auths:/app/auths
- ./log:/app/log
restart: unless-stopped
env_file:
- .env