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

failover support #65

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
8604085
added .gitignore
zombiedk Oct 18, 2023
e91dd34
added failover support
zombiedk Oct 18, 2023
e8e5308
better description
zombiedk Oct 18, 2023
2e1e5e8
moved config to sub dir
zombiedk Oct 24, 2023
a2f8c74
sample files
zombiedk Oct 24, 2023
1dd658f
changed to use ENV vars
zombiedk Oct 24, 2023
c71d319
bug: removed echo
zombiedk Oct 24, 2023
f3791c0
better name
zombiedk Oct 24, 2023
89a80cf
chmod +x
zombiedk Oct 24, 2023
f36d826
added helptext for sample code
zombiedk Oct 24, 2023
be63098
moved back
zombiedk Oct 24, 2023
eb3b8d2
changed from ENV to ARG
zombiedk Oct 24, 2023
7f63c60
changed to build time config
zombiedk Oct 24, 2023
9657dfb
define args in .env
zombiedk Oct 24, 2023
c8852e1
added .env file
zombiedk Oct 24, 2023
0c36cb1
moved to host folder
zombiedk Oct 27, 2023
b3d3897
added jet brains
zombiedk Feb 6, 2024
adcfc24
Merge branch 'sameersbn:master' into master
zombiedk May 8, 2024
a7f8df3
Use Docker volume
Glorforidor Jul 11, 2024
3e887c2
build(deps): bump ubuntu from jammy-20230816 to jammy-20240808
dependabot[bot] Nov 11, 2024
a494a5c
build(deps): bump github/codeql-action from 2 to 3
dependabot[bot] Nov 11, 2024
296c953
build(deps): bump docker/metadata-action from 4 to 5
dependabot[bot] Nov 11, 2024
1e5157d
build(deps): bump docker/setup-buildx-action from 2 to 3
dependabot[bot] Nov 11, 2024
2b15b5e
build(deps): bump docker/build-push-action from 4 to 6
dependabot[bot] Nov 11, 2024
a2cb568
build(deps): bump actions/checkout from 3 to 4
dependabot[bot] Nov 11, 2024
8f90cbf
Merge pull request #1 from SDFIdk/dependabot/docker/ubuntu-jammy-2024…
zombiedk Nov 11, 2024
239b3d0
Merge pull request #2 from SDFIdk/dependabot/github_actions/github/co…
zombiedk Nov 11, 2024
0e0f056
Merge pull request #3 from SDFIdk/dependabot/github_actions/docker/me…
zombiedk Nov 11, 2024
4a09cca
Merge pull request #4 from SDFIdk/dependabot/github_actions/docker/se…
zombiedk Nov 11, 2024
7c835db
Merge pull request #5 from SDFIdk/dependabot/github_actions/docker/bu…
zombiedk Nov 11, 2024
45d7b16
Merge pull request #6 from SDFIdk/dependabot/github_actions/actions/c…
zombiedk Nov 11, 2024
12ecfef
build(deps): bump docker/login-action from 2 to 3
dependabot[bot] Nov 11, 2024
0a98ba5
Merge pull request #7 from SDFIdk/dependabot/github_actions/docker/lo…
zombiedk Nov 11, 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
Prev Previous commit
Next Next commit
better name
  • Loading branch information
zombiedk committed Oct 24, 2023
commit f3791c0e82e79db23c4dd5be4eedd9fdeef914e6
2 changes: 1 addition & 1 deletion docker/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.5'

services:
my_server:
image: exsample/my_server
image: apt-cacher-ng/ubuntu:latest
build: .
environment:
APT_CACHER_NG_IP: '172.17.0.1'
Expand Down
2 changes: 1 addition & 1 deletion docker/run-bash.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
docker run -e APT_CACHER_NG_IP=172.17.0.1 -e APT_CACHER_NG_PORT=3142 -it exsample/my_server /bin/bash
docker run -e APT_CACHER_NG_IP=172.17.0.1 -e APT_CACHER_NG_PORT=3142 -it apt-cacher-ng/ubuntu:latest /bin/bash