21 lines
481 B
YAML
21 lines
481 B
YAML
services:
|
|
afip-last-stand:
|
|
image: thelax18/afip_last_stand:v.1.0
|
|
container_name: afip-last-stand
|
|
network_mode: service:openvpn-client
|
|
environment:
|
|
AFIP_USER: ${AFIP_USER}
|
|
AFIP_PASS: ${AFIP_PASS}
|
|
restart: unless-stopped
|
|
|
|
openvpn-client:
|
|
image: ghcr.io/wfg/openvpn-client
|
|
container_name: openvpn-client
|
|
cap_add:
|
|
- NET_ADMIN
|
|
devices:
|
|
- /dev/net/tun
|
|
volumes:
|
|
- $PWD/config:/data/vpn
|
|
restart: unless-stopped
|