15 lines
347 B
YAML
15 lines
347 B
YAML
version: "3.1"
|
|
|
|
services:
|
|
rumor-party-line:
|
|
container_name: rumor-party-line
|
|
restart: always
|
|
build: .
|
|
ports:
|
|
- '9000:3000'
|
|
environment:
|
|
PORT: '3000'
|
|
CLIENT_URL: 'https://rumor.orangemayhem.net'
|
|
MAX_PARTY_LINES: '1'
|
|
INITIAL_RUMOR: '...nothing has been said, yet.'
|
|
ENVIRONMENT: 'production'
|