blob: 4bb153637577a8b572247886fd458aaec0b065c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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:
|