25 lines
417 B
YAML
25 lines
417 B
YAML
|
version: "3.9"
|
||
|
|
||
|
services:
|
||
|
rclone:
|
||
|
image: rclone
|
||
|
command: sh -c "rclone copy -P badhouseplants-public:/badhouseplants-net-main /static"
|
||
|
hugo:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Containerfile
|
||
|
volumes:
|
||
|
- cache_vol:/var/cache
|
||
|
- run_vol:/run
|
||
|
|
||
|
volumes:
|
||
|
public:
|
||
|
driver_opts:
|
||
|
type: tmpfs
|
||
|
device: tmpfs
|
||
|
static:
|
||
|
driver_opts:
|
||
|
type: tmpfs
|
||
|
device: tmpfs
|
||
|
|