Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated moin version to 1.9.11 #3

Open
wants to merge 41 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
c9d07be
updated moin version to 1.9.11
abejaranoh Feb 13, 2024
8812190
set uwsgi version to 2.0.20
abejaranoh Feb 13, 2024
975bb08
set versions
abejaranoh Feb 13, 2024
28b393a
moin fresh install
abejaranoh Feb 24, 2024
49f6430
Create docker-image.yml
abejaranoh Feb 26, 2024
310ef14
Update Dockerfile
abejaranoh Feb 26, 2024
d10d493
debian 9
abejaranoh Feb 26, 2024
75bf306
debian 10
abejaranoh Feb 27, 2024
c9a91ce
buster uptodate
abejaranoh Mar 2, 2024
1a36db0
Merge pull request #1 from abejaranoh/dev
abejaranoh May 31, 2024
ff2f1a7
Merge pull request #2 from abejaranoh/updated
abejaranoh May 31, 2024
df87e2b
Update docker-image.yml
abejaranoh May 31, 2024
492c4fe
Update docker-image.yml
abejaranoh Jun 1, 2024
22d4b3a
Update docker-image.yml
abejaranoh Jun 1, 2024
3023605
Update docker-image.yml
abejaranoh Jun 1, 2024
e7b1818
Update docker-image.yml
abejaranoh Jun 1, 2024
d992aa2
Update docker-image.yml
abejaranoh Jun 1, 2024
764387f
Update docker-image.yml
abejaranoh Jun 1, 2024
04f6a00
actions v4
abejaranoh Jun 1, 2024
5c0a010
moin test
abejaranoh Jun 1, 2024
e42bed4
build image in test
abejaranoh Jun 1, 2024
d402259
Update docker-image.yml
abejaranoh Jun 1, 2024
20848bc
Update docker-image.yml
abejaranoh Jun 1, 2024
a716705
Update docker-image.yml
abejaranoh Jun 1, 2024
235a371
Update docker-image.yml
abejaranoh Jun 1, 2024
0af9c53
Update docker-image.yml
abejaranoh Jun 1, 2024
b5f17f6
Update docker-image.yml
abejaranoh Jun 1, 2024
60d904b
Update docker-image.yml
abejaranoh Jun 5, 2024
4482f42
Update docker-image.yml
abejaranoh Jun 5, 2024
2ec974c
Update docker-image.yml
abejaranoh Jun 5, 2024
4488e31
Update docker-image.yml
abejaranoh Jun 5, 2024
6ec06cd
Update docker-image.yml
abejaranoh Jun 5, 2024
55b887a
Update docker-image.yml
abejaranoh Jun 6, 2024
12103ba
Update docker-image.yml
abejaranoh Jun 6, 2024
0ba9c2f
Update docker-image.yml
abejaranoh Jun 6, 2024
27850ea
Update docker-image.yml
abejaranoh Jun 13, 2024
4efc71b
Update docker-image.yml
abejaranoh Jun 13, 2024
51db333
Update docker-image.yml
abejaranoh Jun 13, 2024
74eb2f0
Create index.js
abejaranoh Jun 13, 2024
1febe4e
Update docker-image.yml
abejaranoh Jun 13, 2024
1b14072
Update docker-image.yml
abejaranoh Jun 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Docker Image CI

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches: [ "main" ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Print hello
run: echo "Hola Actions"
- name: variable
run: echo "${{ toJSON(github) }}"
build:
needs: test
runs-on: ubuntu-22.04
container:
image: alexbh/moin:1.9.11-buster
steps:
- name: Print hello
run: echo "Hola Actions"
- name: Code Checkout
uses: actions/checkout@v4
- name: Testing environment
run: |
cat /etc/os-release
python -V
moin --version




13 changes: 10 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
FROM python:2.7
#debian 10
FROM python:2.7-buster
#debian 9
#FROM python:2.7-stretch
#debian 8
#FROM python:2.7-jessie

ENV MOINMOIN_VERSION 1.9.10
ENV MOINMOIN_VERSION 1.9.11

RUN apt update && apt -y upgrade

# Add user and group for MoinMoin
RUN groupadd -r moin && useradd -r -g moin moin
Expand All @@ -23,7 +30,7 @@ ENV PATH /usr/local/moin/server:$PATH

# Install uWSGI
RUN set -ex \
&& pip install --no-cache-dir uwsgi
&& pip install --no-cache-dir "uwsgi==2.0.20"

COPY moin/uwsgi.ini /usr/local/moin/

Expand Down
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

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'
services:
moin:
image: takumaw/moinmoin
image: alexbh/moin:1.9.11-buster-updated
ports:
- "8080:8080"
- "3031:3031"
Expand Down