mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-26 02:05:06 +01:00
22 lines
445 B
YAML
22 lines
445 B
YAML
version: '3'
|
|
|
|
volumes:
|
|
teleport-data:
|
|
|
|
services:
|
|
|
|
teleport:
|
|
image: quay.io/gravitational/teleport:10.0.2
|
|
user: 1000:1000
|
|
container_name: teleport
|
|
entrypoint: /bin/sh
|
|
command: -c "/usr/bin/dumb-init teleport start -d -c /etc/teleport/teleport.yml"
|
|
ports:
|
|
- "3023:3023"
|
|
- "3024:3024"
|
|
- "3025:3025"
|
|
- "443:443"
|
|
volumes:
|
|
- .config:/etc/teleport
|
|
- teleport-data:/var/lib/teleport
|