VPLink/docker-compose.yml

17 lines
331 B
YAML
Raw Permalink Normal View History

2023-08-22 13:57:18 +00:00
version: '3.9'
services:
2023-08-26 11:50:06 +00:00
vplink:
container_name: VPLink
2023-08-22 13:57:18 +00:00
pull_policy: build
build:
context: .
2023-08-28 00:43:26 +00:00
dockerfile: Dockerfile
2023-08-22 13:57:18 +00:00
volumes:
- type: bind
2023-08-26 11:50:06 +00:00
source: /var/log/vp/vplink
2023-08-22 13:57:18 +00:00
target: /app/logs
- type: bind
2023-08-26 11:50:06 +00:00
source: /etc/vp/vplink
2023-08-22 13:57:18 +00:00
target: /app/data
restart: always