BattleBit-Community-Server-API/docker-compose.yml

16 lines
341 B
YAML
Raw Permalink Normal View History

2023-08-11 17:38:52 -04:00
version: "3.8"
2023-08-11 07:56:04 -04:00
# In the docker compose file, we define some services (containers) to run.
# This will be geared towards production.
services:
battlebit-community-api:
2023-08-11 17:38:52 -04:00
image: bb-community-server-api:latest
2023-08-11 07:56:04 -04:00
build:
# Specify how to build the image above.
context: .
restart: always
ports:
2023-08-11 17:38:52 -04:00
- "29294:29294"