mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-06 00:39:40 +00:00
23 lines
359 B
YAML
23 lines
359 B
YAML
version: '3.3'
|
|
services:
|
|
strongswan:
|
|
image: philplckthun/strongswan
|
|
ports:
|
|
- "500:500/udp"
|
|
- "4500:4500/udp"
|
|
- "1701:1701/udp"
|
|
privileged: true
|
|
volumes:
|
|
- "charondata:/var/run"
|
|
|
|
app:
|
|
build: .
|
|
volumes:
|
|
- ".:/app"
|
|
- "charondata:/var/run"
|
|
depends_on:
|
|
- strongswan
|
|
|
|
volumes:
|
|
charondata:
|