mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-11 15:57:33 +01:00
13 lines
296 B
YAML
13 lines
296 B
YAML
|
version: "3.8"
|
||
|
|
||
|
services:
|
||
|
bitburner-app:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile
|
||
|
args:
|
||
|
BUILD_MODE: production # Pass the build mode to the Dockerfile
|
||
|
ports:
|
||
|
- "8080:80" # Map port 8080 on the host to port 80 in the container
|
||
|
restart: unless-stopped
|