forked from Bitcoindefi/OpenAO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.blue.yml
More file actions
32 lines (30 loc) · 974 Bytes
/
Copy pathdocker-compose.blue.yml
File metadata and controls
32 lines (30 loc) · 974 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
30
31
32
name: aoweb-api-blue
services:
api:
build:
context: .
restart: unless-stopped
environment:
NODE_ENV: production
PORT: 3100
DATABASE_URL: postgresql://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@postgres:5432/${POSTGRES_DB:-aoweb}
TOKEN_AUTH: ${TOKEN_AUTH:-changeme}
CORS_ORIGIN: ${CORS_ORIGIN:-http://localhost:3000}
SITE_URL: ${SITE_URL}
SES_REGION: ${SES_REGION}
SES_ACCESS_KEY_ID: ${SES_ACCESS_KEY_ID}
SES_SECRET_ACCESS_KEY: ${SES_SECRET_ACCESS_KEY}
SES_FROM_EMAIL: ${SES_FROM_EMAIL}
SES_FROM_NAME: ${SES_FROM_NAME}
GAME_DATA_ADMIN_EMAIL: ${GAME_DATA_ADMIN_EMAIL:-}
GAME_DATA_ADMIN_ACCOUNT_ID: ${GAME_DATA_ADMIN_ACCOUNT_ID:-}
GAME_DATA_ADMIN_PROXY_TOKEN: ${GAME_DATA_ADMIN_PROXY_TOKEN}
networks:
- default
- postgres_shared
ports:
- "127.0.0.1:3100:3100"
networks:
postgres_shared:
external: true
name: api_default