Skip to content

Commit

Permalink
Fix dockerhub username
Browse files Browse the repository at this point in the history
  • Loading branch information
outofcontrol committed Dec 29, 2023
1 parent 4834df5 commit ff99690
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ cd my_wiki
Now you can convert `filename.xml` using docker.
Note: do **not** use the output parameter. The output will always be written into the subdirectory `output` of the current path. (hence the creation of a new directory). This is necessary, because the docker container does not have access to your filesystem except for the current directory (because of the `-v $PWD:/app` parameter for docker)
```bash
docker run -v $PWD:/app outofcontrol/mediawiki-to-gfm --filename=filename.xml
docker run -v $PWD:/app oooc/mediawiki-to-gfm --filename=filename.xml
```

## Export Mediawiki Files to XML
Expand Down
4 changes: 2 additions & 2 deletions docker/push.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
DOCKER_USERNAME=outofcontrol
DOCKER_USERNAME=oooc
docker tag mediawiki-to-gfm $DOCKER_USERNAME/mediawiki-to-gfm
docker push $DOCKER_USERNAME/mediawiki-to-gfm
echo "now create a version tag and push that one:"
echo "docker tag mediawiki-to-gfm $DOCKER_USERNAME/mediawiki-to-gfm:version-1.0.1"
echo "docker push $DOCKER_USERNAME/mediawiki-to-gfm:version-1.0.1"
echo "docker push $DOCKER_USERNAME/mediawiki-to-gfm:version-1.0.1"

0 comments on commit ff99690

Please sign in to comment.