File tree Expand file tree Collapse file tree 10 files changed +30
-7
lines changed
Pythonic/public_html/config/Toolbox/2Connectivity Expand file tree Collapse file tree 10 files changed +30
-7
lines changed Original file line number Diff line number Diff line change
1
+ 1.9
2
+
3
+
4
+
1
5
1.8
2
6
3
7
CCXT: Fixed bug querying OHLCV data
Original file line number Diff line number Diff line change 9
9
# Full multi-processing and multi-threading capable.
10
10
#
11
11
#
12
- # CreationDate: 05.04 .2021
12
+ # CreationDate: 10.11 .2021
13
13
# Creator: Stephan Avenwedde
14
14
#
15
15
#
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ # BUILD WASM FRONTEND
4
+
5
+ # src/Pythonic/build.sh
6
+
7
+
8
+ # BUILD PIP PACKAGE RPI
9
+ cp setup_rpi.py setup.py
10
+ cp setup_rpi.cfg setup.cfg
11
+ python3 setup.py sdist
12
+
13
+ # DOWNLOAD CODE SERVER EXTENSIONS
14
+ # src/code-server/download.sh
15
+
16
+ # BUILD CONTAINER IMAGE
17
+ # podman build -t pythonicautomation/pythonic:1.7 .
Original file line number Diff line number Diff line change @@ -9,10 +9,6 @@ cp setup_x86.py setup.py
9
9
cp setup_x86.cfg setup.cfg
10
10
python3 setup.py sdist
11
11
12
- # BUILD PIP PACKAGE x86
13
- cp setup_rpi.py setup.py
14
- cp setup_rpi.cfg setup.cfg
15
- python3 setup.py sdist
16
12
17
13
# DOWNLOAD CODE SERVER EXTENSIONS
18
14
# src/code-server/download.sh
Original file line number Diff line number Diff line change 27
27
'public_html/static/GPIO_Read.png' ,
28
28
'public_html/static/GPIO_Write.png' ,
29
29
'public_html/static/Telegram.png' ,
30
+ 'public_html/static/Email.png' ,
30
31
'public_html/static/CCXT.png' ,
31
32
'public_html/static/CCXT_Method.png' ,
32
33
'public_html/static/python.ico' ,
Original file line number Diff line number Diff line change 25
25
'public_html/static/GenericProcess.png' ,
26
26
'public_html/static/ProcessPipe.png' ,
27
27
'public_html/static/Telegram.png' ,
28
+ 'public_html/static/Email.png' ,
28
29
'public_html/static/CCXT.png' ,
29
30
'public_html/static/CCXT_Method.png' ,
30
31
'public_html/static/python.ico' ,
File renamed without changes.
Original file line number Diff line number Diff line change 7
7
8
8
# Image bauen
9
9
podman build -t Pythonic:0.1 .
10
+ podman build -t pythonicautomation/pythonic:1.9 .
10
11
11
12
# Image entfernen
12
13
podman rmi <image-name>
@@ -15,6 +16,10 @@ podman image rm
15
16
# Images auflisten
16
17
podman images
17
18
19
+ # Open bash in running container
20
+
21
+ podman exec -i -t <container-id> /bin/bash
22
+
18
23
# Container starten - hostPort:guestPort
19
24
# Ports are exposed to 0.0.0.0 by default
20
25
# To restrict this exportse to 127.0.0.1:7000:7000
@@ -23,9 +28,8 @@ podman run -d --name Pythonic -p 7000:7000 -p 8000:8000 pythonic:<tag>
23
28
24
29
# login to remote repository
25
30
podman login -u pythonicautomation https://index.docker.io/v1/
31
+ podman login -u pythonicautomation index.docker.io
26
32
27
- # re-tag image
28
- podman image tag pythonic:1.8 pythonicautomation:1.8
29
33
30
34
# push image
31
35
podman push pythonicautomation/pythonic:<tag>
You can’t perform that action at this time.
0 commit comments