This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
augie/docker-compose.yml

27 lines
466 B
YAML
Raw Normal View History

2019-11-27 16:20:06 +13:00
version: "2"
volumes:
history:
2019-11-27 16:20:06 +13:00
services:
ppp:
build: ./ppp
privileged: true
network_mode: host
environment:
HISTFILE: /history/bash_history
2019-11-27 16:20:06 +13:00
volumes:
- history:/bash_history
2019-11-29 17:55:52 +13:00
augie:
build: ./augie
network_mode: host
privileged: true
2019-11-29 17:55:52 +13:00
environment:
HISTFILE: /history/bash_history
MDNS_INTERFACE: ppp0
2019-11-29 17:55:52 +13:00
volumes:
- history:/bash_history
labels:
io.balena.features.supervisor-api: "1"