15 lines
232 B
YAML
15 lines
232 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
fathom:
|
||
|
image: usefathom/fathom
|
||
|
container_name: fathom
|
||
|
restart: always
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
volumes:
|
||
|
- type: bind
|
||
|
source: ./fathom.db
|
||
|
target: /app/fathom.db
|
||
|
|