mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-04 19:30:07 +03:00
* Add SSH keys mount (mimicking default non-Docker behaviour). * Increase manifest version to lowest 3.x supporting bind mounts. * Change restart policy from `always` to `unless-stopped`. * Set a container name. * Fix port indentation to 2 spaces, as done elsewhere.
14 lines
239 B
YAML
14 lines
239 B
YAML
version: '3.2'
|
|
services:
|
|
app:
|
|
container_name: ssh-chat
|
|
build: .
|
|
ports:
|
|
- 2022:2022
|
|
restart: unless-stopped
|
|
volumes:
|
|
- type: bind
|
|
source: ~/.ssh/
|
|
target: /root/.ssh/
|
|
read_only: true
|