Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐳 feat(docker-compose): add configuration for nexterm #572

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions how-to-install-nexterm-on-dockge/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## YouTube Video

The open source server management software for SSH, VNC & RDP. This is in Preview Release.
39 changes: 39 additions & 0 deletions how-to-install-nexterm-on-dockge/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Service definitions for the big-bear-nexterm application
services:
# Service name: big-bear-nexterm
# The `big-bear-nexterm` service definition
big-bear-nexterm:
# Name of the container
container_name: big-bear-nexterm

# Image to be used for the container
image: germannewsmaker/nexterm:1.0.2-OPEN-PREVIEW

# Container restart policy
restart: unless-stopped

# Volumes to be mounted to the container
volumes:
# Mount the nexterm_data volume to store app data
- big_bear_nexterm_data:/app/data

# Ports mapping between host and container
ports:
# Map port 6989 on the host to port 6989 in the container
- "6989:6989"

# Networks
networks:
# Network definition
- big_bear_nexterm_network

# Networks
networks:
big_bear_nexterm_network:
name: big_bear_nexterm_network

# Volumes
volumes:
big_bear_nexterm_data:
name: big_bear_nexterm_data
driver: local