Skip to content

Commit

Permalink
ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
qiaofeng1227 authored Mar 31, 2024
1 parent 49d7870 commit de1a18e
Show file tree
Hide file tree
Showing 7 changed files with 79 additions and 0 deletions.
12 changes: 12 additions & 0 deletions apps/ruby/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
W9_REPO=ruby
W9_DIST=community
W9_VERSION=3.3

#### --Not allowed to edit below environments when recreate app based on existing data -- ####
W9_ID=ruby
W9_HTTP_PORT_SET=9001
W9_HTTP_PORT=8080
W9_URL=sample.domain.com
W9_URL_REPLACE=true
W9_NETWORK=websoft9
#### ----------------------------------------------------------------------------------------- ####
5 changes: 5 additions & 0 deletions apps/ruby/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# CHANGELOG

## Release
### Fixes and Enhancements

1 change: 1 addition & 0 deletions apps/ruby/Notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# ruby
26 changes: 26 additions & 0 deletions apps/ruby/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Python on Docker

This is an **Docker Compose solution** powered by [Websoft9](https://www.websoft9.com) based on Docker for Python:


- community: 3.12, 3.11, 3.10, 3.9, 3.8, 3.7, 3.6


## System Requirements

The following are the minimal [recommended requirements](https://www.python.org/):

* **RAM**: 1 GB or more
* **CPU**: 1 cores or higher
* **Disk**: at least 1 GB of free space
* **bandwidth**: more fluent experience over 100M

## Install

You can install this Python by [How to use it?](https://github.com/Websoft9/docker-library#how-to-use-it).

If you want use Python with **Websoft9 Business Support** free, you can [subscribe Python](https://www.websoft9.com/apps) on Cloud platform

## Documentation

[Python Administrator Guide](https://support.websoft9.com/docs/python) powered by Websoft9
14 changes: 14 additions & 0 deletions apps/ruby/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
services:
java:
container_name: ${W9_ID}
image: $W9_REPO:$W9_VERSION
restart: unless-stopped
env_file: .env
tty: true
ports:
- $W9_HTTP_PORT_SET:8080

networks:
default:
name: ${W9_NETWORK}
external: true
3 changes: 3 additions & 0 deletions apps/ruby/src/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# About

This folder includes files mount to container and used by Websoft9
18 changes: 18 additions & 0 deletions apps/ruby/variables.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "ruby",
"trademark": "Ruby",
"release": false,
"fork_url": "https://www.ruby-lang.org/",
"edition": [
{
"dist": "community",
"version": ["3.3","3.2","3.1","3.0","2.7","2.6","2.5","2.4","2.3","2.3","2.2","2.1","2.0"]
}
],
"requirements": {
"cpu": "1",
"memory": "1",
"disk": "1",
"url": "https://www.ruby-lang.org/"
}
}

0 comments on commit de1a18e

Please sign in to comment.