Skip to content

Commit 7486d33

Browse files
committed
Add example file for docker-compose
1 parent ed2e2da commit 7486d33

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

docker-compose.example.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: "3.9"
2+
3+
services:
4+
sshwifty:
5+
image: sshwifty:dev
6+
container_name: sshwifty
7+
user: "nobody:nobody"
8+
build: ./
9+
restart: always
10+
# environment:
11+
# - SSHWIFTY_SHAREDKEY=WEB_ACCESS_PASSWORD
12+
ports:
13+
- "127.0.0.1:8182:8182/tcp"
14+
stdin_open: true
15+
tty: true
16+
# deploy:
17+
# replicas: 3
18+
# resources:
19+
# limits:
20+
# cpus: '0.3'
21+
# memory: 600M

0 commit comments

Comments
 (0)