28 lines
569 B
YAML
28 lines
569 B
YAML
name: andrewamason.tech
|
|
|
|
services:
|
|
server:
|
|
image: docsy/docsy-example
|
|
build:
|
|
context: .
|
|
command: server
|
|
#command: server -D
|
|
volumes:
|
|
- nfs_hugo_src:/src
|
|
- nfs_hugo_cache:/tmp/hugo_cache
|
|
ports:
|
|
- 1313:1313
|
|
expose:
|
|
- 1313
|
|
|
|
volumes:
|
|
nfs_hugo_src:
|
|
driver_opts:
|
|
type: nfs
|
|
o: addr=172.24.3.23,rw,nolock,soft
|
|
device: :/volume1/docker/hugo/src
|
|
nfs_hugo_cache:
|
|
driver_opts:
|
|
type: nfs
|
|
o: addr=172.24.3.23,rw,nolock,soft
|
|
device: :/volume1/docker/hugo/cache |