mirror of
https://github.com/pockethost/pockethost.git
synced 2025-05-19 13:26:42 +00:00
18 lines
368 B
YAML
18 lines
368 B
YAML
version: '3'
|
|
|
|
services:
|
|
prepbox:
|
|
env_file:
|
|
- .env.local
|
|
build:
|
|
context: ..
|
|
dockerfile: Dockerfile
|
|
container_name: prepbox
|
|
working_dir: /src
|
|
command: bash -c "yarn migrate"
|
|
volumes:
|
|
- ./mount/daemon/instances:/data
|
|
- ./mount/cache/go:/go
|
|
- ./mount/cache/yarn:/usr/local/share/.cache/yarn/v6
|
|
- ..:/src
|