wisski-cloud-distillery/distillery/resources/compose/ssh/docker-compose.yml
Tom Wiesing db2ad9b4bd
compose.yml: network.external.name => network.name
This commit updates the various `docker-compose.yml` files to replace
`network.external.name` with `network.name`.
2022-09-08 14:39:02 +02:00

17 lines
515 B
YAML

version: "3.7"
services:
ssh:
image: ghcr.io/tkw1536/dockersshd:latest
command: -hostkey /keys/hostkey -shell /user_shell.sh -keylabel eu.wiss-ki.barrel.authfile -userlabel eu.wiss-ki.barrel.slug -L triplestore:7200 -L phpmyadmin:80 -L sql:3306
ports:
- "2222:2222"
volumes:
- './data/keys:/keys'
- '/var/run/docker.sock:/var/run/docker.sock:ro'
restart: always
networks:
default:
name: distillery
external: true