summaryrefslogtreecommitdiffstats
path: root/docker-compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r--docker-compose.yaml26
1 files changed, 26 insertions, 0 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml
new file mode 100644
index 0000000..4bb1536
--- /dev/null
+++ b/docker-compose.yaml
@@ -0,0 +1,26 @@
+version: '3.7'
+
+services:
+ gomf:
+ container_name: gomf
+ restart: always
+ build:
+ context: ./gomf
+ volumes:
+ - ./gomf.conf:/gomf.conf:ro
+ - gomf-storage:/gomf/upload:rw
+ - gomf-log:/gomf/log:rw
+
+ gomf-modpanel:
+ container_name: gomf-modpanel
+ restart: always
+ build:
+ context: ./gomf-modpanel
+ volumes:
+ - ./gomf-modpanel.conf:/gomf-modpanel.conf:ro
+ - gomf-storage:/gomf/upload:rw
+ - gomf-log:/gomf/log:rw
+
+volumes:
+ gomf-storage:
+ gomf-log: