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

16 lines
341 B
YAML
Raw Normal View History

2023-08-11 23:38:52 +02:00
version: "3.8"
2023-08-11 13:56:04 +02: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 23:38:52 +02:00
image: bb-community-server-api:latest
2023-08-11 13:56:04 +02:00
build:
# Specify how to build the image above.
context: .
restart: always
ports:
2023-08-11 23:38:52 +02:00
- "29294:29294"