teaching-webterm/ansible/templates/docker-compose.yml.j2

22 lines
417 B
Plaintext
Raw Normal View History

2022-05-26 15:31:39 +00:00
---
# vim: set ts=2 sw=2 et ft=yaml :
version: "3.4"
services:
sshwifty:
image: niruix/sshwifty:latest
restart: always
ports:
2022-05-30 19:35:02 +00:00
- "{{sshwifty_internal_port}}:8182"
2022-05-26 15:31:39 +00:00
environment:
2022-05-30 19:35:02 +00:00
SSHWIFTY_SHAREDKEY: "{{sshwifty_shared_key}}"
2022-05-26 15:31:39 +00:00
SSHWIFTY_CONFIG: /etc/sshwifty.conf
volumes:
2022-05-30 19:35:02 +00:00
- "{{sshwifty_configuration_directory}}/sshwifty.conf:/etc/sshwifty.conf"
2022-05-26 15:31:39 +00:00
volumes: {}
networks: {}
#