Skip to content

Commit 6486e84

Browse files
committed
Pre merge with master.
1 parent 686dc27 commit 6486e84

File tree

5 files changed

+2
-2
lines changed

5 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ Within the Image and Docker Compose tab, you pull images from DockerHub by provi
143143

144144
### ➮ Process Logs
145145
View process logs from any number of running or stopped containers. The table is both exportable and sortable by any parameter. You can filter logs by specifying the number of logs that you wish to receive (tail) as well as time (since). Process logs will help you analyze and debug problems faster by offering insights into what went wrong.
146+
146147
![alt text](assets/docketeer-process-logs.gif)
147148

148149
<br> For a full demo of Docketeer's features, visit [docketeer.org](https://www.docketeer.org/demo).
File renamed without changes.
File renamed without changes.

src/components/tabs/Yml.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import { Button } from '@mui/material';
1818
*/
1919

2020
const Yml = () => {
21-
const classes = useStyles();
2221
const [filePath, setFilePath] = useState('');
2322
const [ymlFile, setYmlFile] = useState('');
2423
const [ymlFileName, setYmlFileName] = useState(''); // ymlFileName is specifically for the dockerComposeUp helper fn

src/components/views/SysAdmin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const SysAdmin = () => {
3838
const composeymlFiles = (data) => dispatch(actions.composeymlFiles(data));
3939
const getNetworkContainers = (data) =>
4040
dispatch(actions.getNetworkContainers(data));
41-
const removeContainer = (id) => dispatch(actions.Container(id));
41+
const removeContainer = (id) => dispatch(actions.removeContainer(id));
4242
const runStoppedContainer = (data) =>
4343
dispatch(actions.runStoppedContainer(data));
4444
const stopRunningContainer = (id) =>

0 commit comments

Comments
 (0)