Skip to content

Commit f6ea311

Browse files
committed
mathics:latest has to be used for now
1 parent ab766c5 commit f6ea311

12 files changed

Lines changed: 15 additions & 15 deletions

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ dist:
4040

4141
#: Pull mathics docker image from dockerhub with tag $(TAG). The default tag is "latest".
4242
docker-pull:
43-
$(DOCKER) pull mathicsorg/mathics3:$(TAG)
43+
$(DOCKER) pull mathicsorg/mathics:$(TAG)
4444

4545
#: Push local docker image to dockerhub with tag $(TAG). The default tag is "latest".
4646
install push upload:
47-
$(DOCKER) push mathicsorg/mathics3:$(TAG)
47+
$(DOCKER) push mathicsorg/mathics:$(TAG)
4848

4949
#: Build docker image with cache clearing
5050
docker-image:

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ That's what this repository is about. Here we have a PyPI installable package th
1818
* ``dmathics3doc`` which runs a PDF viewer, `evince <https://wiki.gnome.org/Apps/Evince>`_, which can view the generated reference manual in PDF.
1919
* ``dmathics3doccopy`` which copies the generated reference PDF manual out of the container and into the host filesystem.
2020

21-
This repository also contains the Dockerfiles used to create the `mathicsorg/mathics3 docker images <https://hub.docker.com/repository/docker/mathicsorg/mathic3s>`_.
21+
This repository also contains the Dockerfiles used to create the `mathicsorg/mathics docker images <https://hub.docker.com/repository/docker/mathicsorg/mathics>`_.
2222

2323
That image is a combination of:
2424

@@ -54,9 +54,9 @@ To install from Python ``pip``::
5454

5555
To install the Docker image, run::
5656

57-
docker pull mathicsorg/mathics3
57+
docker pull mathicsorg/mathics
5858

59-
See `<https://hub.docker.com/r/mathicsorg/mathics3>`_ for more information on how to use it after installing
59+
See `<https://hub.docker.com/r/mathicsorg/mathics>`_ for more information on how to use it after installing
6060

6161
From GitHub:
6262
++++++++++++

docker-compose-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '2'
33
services:
44
mathics:
55
build: ./docker
6-
image: mathicsorg/mathics3:latest
6+
image: mathicsorg/mathics:latest
77

88
volumes:
99
- ./app/data:/usr/src/app/data

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '2'
33
services:
44
mathics:
55
build: ./docker
6-
image: mathicsorg/mathics3:latest
6+
image: mathicsorg/mathics:latest
77

88
volumes:
99
- ./app/data:/usr/src/app/data

script/dmathics3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ typeset dmathics_version='1.0.0'
1111
DOCKER=${DOCKER:-docker}
1212

1313
TAG=${TAG:-latest}
14-
MATHICS3_IMAGE=${MATHICS3_IMAGE:-mathicsorg/mathics3:${TAG}}
14+
MATHICS3_IMAGE=${MATHICS3_IMAGE:-mathicsorg/mathics:${TAG}}
1515

1616
for arg in "$@" ; do
1717
case "$arg" in

script/dmathics3-code-parse

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ typeset dmathics_version='1.0.0'
1111
DOCKER=${DOCKER:-docker}
1212

1313
TAG=${TAG:-latest}
14-
MATHICS3_IMAGE=${MATHICS3_IMAGE:-mathicsorg/mathics3:${TAG}}
14+
MATHICS3_IMAGE=${MATHICS3_IMAGE:-mathicsorg/mathics:${TAG}}
1515

1616
# Show environment variables
1717
for env_setting in MATHICS3_IMAGE; do

script/dmathics3-code-tokenize

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ typeset dmathics_version='1.0.0'
1111
DOCKER=${DOCKER:-docker}
1212

1313
TAG=${TAG:-latest}
14-
MATHICS3_IMAGE=${MATHICS3_IMAGE:-mathicsorg/mathics3:${TAG}}
14+
MATHICS3_IMAGE=${MATHICS3_IMAGE:-mathicsorg/mathics:${TAG}}
1515

1616
# Show environment variables
1717
for env_setting in MATHICS3_IMAGE; do

script/dmathics3.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Simple Powershell command file to run mathics
22
# FIXME: add features of bash script
3-
docker run --name dmathics3-cli --rm --tty --interactive --network=host mathicsorg/mathics3:latest --mode mathics3
3+
docker run --name dmathics3-cli --rm --tty --interactive --network=host mathicsorg/mathics:latest --mode mathics3

script/dmathics3copy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ DOCKER=${DOCKER:-docker}
99
TEMPDIR=${TMPDIR:-/tmp}
1010

1111
TAG=${TAG:-latest}
12-
MATHICS3_IMAGE=${MATHICS3_IMAGE:-mathicsorg/mathics3:${TAG}}
12+
MATHICS3_IMAGE=${MATHICS3_IMAGE:-mathicsorg/mathics:${TAG}}
1313

1414
for arg in "$@" ; do
1515
case "$arg" in

script/dmathics3doc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ typeset dmathicsdoc_version='1.0.0'
1111
DOCKER=${DOCKER:-docker}
1212

1313
TAG=${TAG:-latest}
14-
MATHICS3_IMAGE=${MATHICS3_IMAGE:-mathicsorg/mathics3:${TAG}}
14+
MATHICS3_IMAGE=${MATHICS3_IMAGE:-mathicsorg/mathics:${TAG}}
1515

1616
for arg in "$@" ; do
1717
case "$arg" in

0 commit comments

Comments
 (0)