mirror of
https://github.com/oliverbooth/VPLink
synced 2024-11-09 23:25:42 +00:00
17 lines
350 B
YAML
17 lines
350 B
YAML
|
version: '3.9'
|
||
|
services:
|
||
|
vpbridge:
|
||
|
container_name: VpBridge
|
||
|
pull_policy: build
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: VpBridge/Dockerfile
|
||
|
volumes:
|
||
|
- type: bind
|
||
|
source: /var/log/vp/vp-bridge
|
||
|
target: /app/logs
|
||
|
- type: bind
|
||
|
source: /etc/vp/vp-bridge
|
||
|
target: /app/data
|
||
|
restart: always
|