mirror of
https://github.com/azukaar/Cosmos-Server.git
synced 2026-04-25 05:48:28 -05:00
[release] v0.14.4
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
## Version 0.14.4
|
||||
- Fix issue with the volumes going read only
|
||||
|
||||
## Version 0.14.3
|
||||
- Added app count to the marketplace
|
||||
|
||||
|
||||
@@ -70,15 +70,6 @@ const NavItem = ({ item, level }) => {
|
||||
transform: 'translateY(-5px)',
|
||||
display: 'inline-block',
|
||||
}}>Beta</span></>;
|
||||
|
||||
if(item.title === "Monitoring")
|
||||
item.title = <>{item.title} <span style={{
|
||||
color: 'gray',
|
||||
fontSize: '11px',
|
||||
textDecoration: 'italic',
|
||||
transform: 'translateY(-5px)',
|
||||
display: 'inline-block',
|
||||
}}>New!</span></>;
|
||||
|
||||
return (
|
||||
<ListItemButton
|
||||
|
||||
@@ -87,7 +87,7 @@ const Migrate014 = ({ config }) => {
|
||||
<li>You won't need all the cosmos-network anymore to connect to containers</li>
|
||||
<li>You can see all your server's networking data in the monitoring tab (not just the docker data)</li>
|
||||
<li>Docker-compose imported container will work out-of-the-box</li>
|
||||
<li>Remove the docker overhead (small performance gain) and ensure Docker does not meddle with IP informations</li>
|
||||
<li>Remove the docker overhead (small performance gain) and ensure Docker does not meddle with IP information</li>
|
||||
<li>Faster boot time (no bootstrapping of containers needed)</li>
|
||||
</ul>
|
||||
Cosmos can automatically migrate to the host mode, but before you do so, please confirm what ports you want to use with Cosmos (default are 80/443).
|
||||
|
||||
@@ -2,27 +2,15 @@ import React from 'react';
|
||||
import { Formik } from 'formik';
|
||||
import { Button, Stack, Grid, MenuItem, TextField, IconButton, FormHelperText, CircularProgress, useTheme, Checkbox, Alert } from '@mui/material';
|
||||
import MainCard from '../../../components/MainCard';
|
||||
import { CosmosCheckbox, CosmosFormDivider, CosmosInputText, CosmosSelect }
|
||||
from '../../config/users/formShortcuts';
|
||||
import { ApiOutlined, CheckCircleOutlined, CloseCircleOutlined, DeleteOutlined, PlayCircleOutlined, PlusCircleOutlined } from '@ant-design/icons';
|
||||
import { PlusCircleOutlined } from '@ant-design/icons';
|
||||
import * as API from '../../../api';
|
||||
import { LoadingButton } from '@mui/lab';
|
||||
import PrettyTableView from '../../../components/tableView/prettyTableView';
|
||||
import { NetworksColumns } from '../networks';
|
||||
import NewNetworkButton from '../createNetwork';
|
||||
import ResponsiveButton from '../../../components/responseiveButton';
|
||||
|
||||
const VolumeContainerSetup = ({ noCard, containerInfo, frozenVolumes = [], refresh, newContainer, OnChange }) => {
|
||||
const restartPolicies = [
|
||||
['no', 'No Restart'],
|
||||
['always', 'Always Restart'],
|
||||
['on-failure', 'Restart On Failure'],
|
||||
['unless-stopped', 'Restart Unless Stopped'],
|
||||
];
|
||||
|
||||
const [volumes, setVolumes] = React.useState([]);
|
||||
const theme = useTheme();
|
||||
const isDark = theme.palette.mode === 'dark';
|
||||
|
||||
React.useEffect(() => {
|
||||
API.docker.volumeList().then((res) => {
|
||||
@@ -89,7 +77,7 @@ const VolumeContainerSetup = ({ noCard, containerInfo, frozenVolumes = [], refre
|
||||
Type: volume.Type,
|
||||
Source: volume.Source,
|
||||
Target: volume.Target,
|
||||
ReadOnly: !volume.RW
|
||||
ReadOnly: false // TODO: add support for this
|
||||
}))
|
||||
};
|
||||
return API.docker.updateContainer(containerInfo.Name.replace('/', ''), realvalues)
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "cosmos-server",
|
||||
"version": "0.14.3",
|
||||
"version": "0.14.4",
|
||||
"description": "",
|
||||
"main": "test-server.js",
|
||||
"bugs": {
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
<a href="https://github.com/DGAzr"><img src="https://avatars.githubusercontent.com/DGAzr" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a>
|
||||
<a href="https://github.com/eldergod1800"><img src="https://avatars.githubusercontent.com/eldergod1800" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a>
|
||||
<a href="https://github.com/Fortcraft"><img src="https://avatars.githubusercontent.com/Fortcraft" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a>
|
||||
<a href="https://github.com/Gordi90"><img src="https://avatars.githubusercontent.com/Gordi90" style="border-radius:48px" width="48" height="48" alt="Dér Kristóf Gordon" title="Dér Kristóf Gordon" /></a>
|
||||
</p><!-- /sponsors -->
|
||||
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user