18 lines
385 B
YAML
18 lines
385 B
YAML
---
|
|
volumes:
|
|
opengist.vol:
|
|
services:
|
|
opengist:
|
|
image: ghcr.io/thomiceli/opengist:1.11.1
|
|
container_name: opengist
|
|
restart: unless-stopped
|
|
ports:
|
|
- 6157:6157
|
|
- 2222:2223
|
|
volumes:
|
|
- opengist.vol:/opengist
|
|
- ~/.config/opengist/config.yml:/config.yml"
|
|
environment:
|
|
OG_SSH_PORT: 22
|
|
UID: $(id -u $USER)
|
|
GID: $(id -u $USER) |