1
0
mirror of https://github.com/oliverbooth/VPLink synced 2024-11-09 23:45:40 +00:00
VPLink/docker-compose.yml

17 lines
338 B
YAML
Raw Normal View History

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