mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +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:
|