-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request 'FIX: conflict between reconcile and heatbeat.' (#…
…41) from fix-loop into master Reviewed-on: https://gitea:3000/AVENTER/mesos-compose/pulls/41
- Loading branch information
Showing
6 changed files
with
23 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[{ "version":"v0.4.2", "builddate":"2023-08-25T21:20:56Z" }] | ||
[{ "version":"v0.4.2", "builddate":"2023-09-11T19:36:21Z" }] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,8 @@ FROM alpine | |
LABEL maintainer="Andreas Peters <[email protected]>" | ||
|
||
RUN apk add --no-cache ca-certificates | ||
RUN apk update | ||
RUN apk upgrade | ||
RUN adduser -S -D -H -h /app appuser | ||
|
||
USER appuser | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,23 @@ | ||
version: "3.9" | ||
services: | ||
vault-server1: | ||
image: vault:latest | ||
image: hashicorp/vault:latest | ||
environment: | ||
VAULT_ADDR: "http://0.0.0.0:8200" | ||
VAULT_DEV_ROOT_TOKEN_ID: vault-plaintext-root-token | ||
mesos: | ||
task_name: "vault:vault-server" | ||
network_mode: "host" | ||
network_mode: "bridge" | ||
network: default | ||
restart: unless-stopped | ||
|
||
vault-server2: | ||
image: hashicorp/vault:latest | ||
environment: | ||
VAULT_ADDR: "http://0.0.0.0:8200" | ||
VAULT_DEV_ROOT_TOKEN_ID: vault-plaintext-root-token | ||
mesos: | ||
task_name: "vault:vault-server" | ||
network_mode: "bridge" | ||
network: default | ||
restart: unless-stopped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters