mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
68b56e7c25
Additionally: * Add EXPOSE hints to Dockerfile * as -> AS in Dockerfile to resolve warning * Point docker-compose to our docker hub image * Remove version property in docker-compose.yml as it was deprecated
15 lines
352 B
YAML
15 lines
352 B
YAML
services:
|
|
openfusion:
|
|
build:
|
|
context: .
|
|
dockerfile: ./Dockerfile
|
|
image: openfusion/openfusion:latest
|
|
volumes:
|
|
- ./config.ini:/usr/src/app/config.ini
|
|
- ./database.db:/usr/src/app/database.db
|
|
- ./tdata:/usr/src/app/tdata
|
|
ports:
|
|
- "23000:23000"
|
|
- "23001:23001"
|
|
- "8003:8003"
|