Skip to content

Commit

Permalink
add changed image info
Browse files Browse the repository at this point in the history
  • Loading branch information
macwinnie committed Nov 25, 2024
1 parent 40214d5 commit 20e3d54
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Within this Repo you will find the Dockerfile and the pipeline configuration to

First things first: **_NEVER_ run the `docker-compose.yml` or the `docker-compose-traefik.yml` without adjustments in production!** You need to adjust it to use your passwords, your domain(s) – even probably you need to define docker networks and other environment specific settings to get the tool running!

You can also run motion.tools in K8s by adapting the information in the compose file(s) into Pod definitions. The basic information, you'd need, is the Docker image at `devopsansiblede/antragsgruen` published to [DockerHub](https://hub.docker.com/r/devopsansiblede/antragsgruen) by versions (e.g. `v4.14.2`, `v4.14`, `v4`), `latest` and some `dev.*` tags reflecting the current development head of the actual code repo of Antragsgrün.

Since the docker principles tell you to only run one process within one container, the container provided within this repository, `jugendpresse/antragsgruen`, only provides the php application. You need to setup a MySQL container, too. The `docker-compose.yml` within this repo shows you, how you can set this up.

If you want to reuse an existing database (container), you have to add a database and the credentials manually and remove the database service from `docker-compose.yml`.
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-traefik.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci

antragsgruen:
image: jugendpresse/docker-antragsgruen:latest
image: devopsansiblede/antragsgruen:latest
restart: always
networks:
- proxy
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci

antragsgruen:
image: jugendpresse/docker-antragsgruen:latest
image: devopsansiblede/antragsgruen:latest
restart: always
ports:
- 8080:80
Expand Down

0 comments on commit 20e3d54

Please sign in to comment.