Skip to content

Commit

Permalink
updating wine to 7 and reverting to wine-stable from wine-dev branch
Browse files Browse the repository at this point in the history
  • Loading branch information
jaikumarm committed Jan 17, 2023
1 parent 859b75e commit a139acb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ jobs:
- checkout
#build
- run: |
docker build -t jaikumarm/iqfeed:v62025-w6d -f Dockerfile . | cat # workaround progress bar weirdness
docker build -t jaikumarm/iqfeed:v62025-w7 -f Dockerfile . | cat # workaround progress bar weirdness
#push
- run: |
set -x
sh +x -c 'echo $DOCKER_PASS' | docker login -u=$DOCKER_USER --password-stdin
docker push jaikumarm/iqfeed:v62025-w6d
docker tag jaikumarm/iqfeed:v62025-w6d jaikumarm/iqfeed:latest
docker push jaikumarm/iqfeed:v62025-w7
docker tag jaikumarm/iqfeed:v62025-w7 jaikumarm/iqfeed:latest
docker push jaikumarm/iqfeed:latest
workflows:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## 2023-01-17
### Changed
- updating wine from 6 to 7
- updating wine from devel to stable due to instability in the pat 2 weeks since moving to devel
- no change in IQFeed Client version still 6.2.0.25 (dockerhub image: jaikumarm/iqfeed:v62025-w7)

## 2023-01-05
### Changed
- updating ubuntu to 22.04 from 20.04 and wine6 from stable to devel
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN dpkg --add-architecture i386 && \
# Install winehq-stable
wget -O - https://dl.winehq.org/wine-builds/winehq.key | apt-key add - && \
add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ jammy main' && \
apt-get update && apt-get install -yq --install-recommends winehq-devel && \
apt-get update && apt-get install -yq --install-recommends winehq-stable && \
apt-get install -yq --no-install-recommends winbind winetricks cabextract && \
# Install python for pyiqfeed
apt-get install -yq --no-install-recommends \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ docker run -e IQFEED_PRODUCT_ID=CHANGEME \
-p 5009:5010 -p 9101:9100 -p 9201:9200 -p 9301:9300 -p 9401:9400\
-p 5901:5901 -p 8088:8088 \
-v /var/log/iqfeed:/root/DTN/IQFeed \
-d jaikumarm/iqfeed:v62025-w6d
-d jaikumarm/iqfeed:v62025-w7
```

With `docker-compose` edit the docker-compose.yml with your iqfeed credentials, then run
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.4'
services:
iqfeed:
image: jaikumarm/iqfeed:v62025-w6d
image: jaikumarm/iqfeed:v62025-w7
container_name: iqfeed
ports:
- "5009:5009"
Expand Down

0 comments on commit a139acb

Please sign in to comment.