initial commit
This commit is contained in:
19
docker-compose.yml
Normal file
19
docker-compose.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
services:
|
||||
rsh-backend:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
image: rsh-backend:${RSH_IMAGE_TAG:-local}
|
||||
container_name: rsh-backend
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "${RSH_PORT:-7777}:7777"
|
||||
environment:
|
||||
RSH_DATA: /var/lib/rsh
|
||||
RSH_BIND: 0.0.0.0:7777
|
||||
RSH_LOG: ${RSH_LOG:-info}
|
||||
volumes:
|
||||
- ${RSH_DATA_DIR:-rsh-data}:/var/lib/rsh
|
||||
|
||||
volumes:
|
||||
rsh-data:
|
||||
Reference in New Issue
Block a user