mirror of
https://github.com/hkalexling/Mango.git
synced 2025-08-02 10:55:30 -04:00
16 lines
289 B
YAML
16 lines
289 B
YAML
version: '3'
|
|
|
|
services:
|
|
mango:
|
|
container_name: mango
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
expose:
|
|
- ${PORT}
|
|
ports:
|
|
- "${PORT}:9000"
|
|
volumes:
|
|
- ${MAIN_DIRECTORY_PATH}:/root/mango
|
|
- ${CONFIG_DIRECTORY_PATH}:/root/.config/mango
|