Skip to content

Commit

Permalink
🐳 feat(docker-compose): add configuration for nexterm (#572)
Browse files Browse the repository at this point in the history
Adds a new Docker Compose configuration for the big-bear-nexterm
application. This includes the service definition, network, and volume
configuration. The big-bear-nexterm service uses the
germannewsmaker/nexterm:1.0.2-OPEN-PREVIEW Docker image and exposes
port 6989 on the host. The application data is stored in a named
volume called big_bear_nexterm_data.

📝 docs(readme): add YouTube video info for nexterm

Adds a new section in the README file to provide information about a
YouTube video related to the nexterm application.
  • Loading branch information
dragonfire1119 authored Oct 25, 2024
1 parent 99af32c commit f4461fe
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
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

0 comments on commit f4461fe

Please sign in to comment.