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
25 lines (24 loc) · 925 Bytes
/
Copy pathdocker-compose.blue.yml
File metadata and controls
25 lines (24 loc) · 925 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
name: aoweb-frontend-blue
services:
frontend:
build:
context: .
args:
NEXT_PUBLIC_API_BASE_URL: ${NEXT_PUBLIC_API_BASE_URL:-http://host.docker.internal/api}
NEXT_PUBLIC_WS_URL: ${NEXT_PUBLIC_WS_URL:-ws://localhost:7666}
NEXT_BUILD_ID: ${NEXT_BUILD_ID:-}
GAME_DATA_ADMIN_PROXY_TOKEN: ${GAME_DATA_ADMIN_PROXY_TOKEN}
restart: unless-stopped
environment:
NODE_ENV: production
PORT: 3000
API_BASE_URL: ${API_BASE_URL:-http://host.docker.internal/api}
TOKEN_AUTH: ${TOKEN_AUTH}
NEXT_PUBLIC_API_BASE_URL: ${NEXT_PUBLIC_API_BASE_URL:-http://host.docker.internal/api}
NEXT_PUBLIC_WS_URL: ${NEXT_PUBLIC_WS_URL:-ws://localhost:7666}
NEXT_BUILD_ID: ${NEXT_BUILD_ID:-}
GAME_DATA_ADMIN_PROXY_TOKEN: ${GAME_DATA_ADMIN_PROXY_TOKEN}
extra_hosts:
- "host.docker.internal:host-gateway"
ports:
- "127.0.0.1:3000:3000"