Skip to content

Commit

Permalink
Merge pull request #6 from sveken/main
Browse files Browse the repository at this point in the history
remove read only from config bind
  • Loading branch information
bredo228 authored Jul 18, 2024
2 parents 9f47de5 + 1cad486 commit 2fb8ca0
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ services:
user: "1000:1000"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "Headless_Configs:/Config:ro"
- "Headless_Configs:/Config"
- "Headless_Logs:/Logs"
# - "RML:/RML" # Uncomment if using mods
restart: on-failure:5
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
user: "1000:1000"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "Headless_Configs:/Config:ro"
- "Headless_Configs:/Config"
- "Headless_Logs:/Logs"
- "RML:/RML"
restart: on-failure:5
Expand Down
2 changes: 1 addition & 1 deletion examples/compose-bindmount-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
user: "1000:1000"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "/path/to/Config:/Config:ro"
- "/path/to/Config:/Config"
- "/path/to/Logs:/Logs"
- "/path/to/RML:/RML" # This line can be removed if not using mods.
restart: on-failure:5
2 changes: 1 addition & 1 deletion examples/compose-forceport-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
user: "1000:1000"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "Headless_Configs:/Config:ro"
- "Headless_Configs:/Config"
- "Headless_Logs:/Logs"
- "RML:/RML"
restart: on-failure:5
Expand Down
4 changes: 2 additions & 2 deletions examples/compose-multiple-servers-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
user: "1000:1000"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "Headless_Configs:/Config:ro"
- "Headless_Configs:/Config"
- "Headless_Logs_bredo:/Logs"
# - "RML:/RML"
restart: on-failure:5
Expand All @@ -29,7 +29,7 @@ services:
user: "1000:1000"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "Headless_Configs:/Config:ro"
- "Headless_Configs:/Config"
- "Headless_Logs_PublicAU:/Logs"
- "RML:/RML"
restart: on-failure:5
Expand Down
2 changes: 1 addition & 1 deletion examples/compose-noenv-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
user: "1000:1000"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "Headless_Configs:/Config:ro"
- "Headless_Configs:/Config"
- "Headless_Logs:/Logs"
- "RML:/RML"
restart: on-failure:5
Expand Down
2 changes: 1 addition & 1 deletion examples/compose-resourcelimits-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
user: "1000:1000"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "Headless_Configs:/Config:ro"
- "Headless_Configs:/Config"
- "Headless_Logs:/Logs"
- "RML:/RML"
restart: on-failure:5
Expand Down
2 changes: 1 addition & 1 deletion portainer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
user: "1000:1000"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "Headless_Configs:/Config:ro"
- "Headless_Configs:/Config"
- "Headless_Logs:/Logs"
# - "RML:/RML"
restart: on-failure:5
Expand Down
2 changes: 1 addition & 1 deletion portainer/portainer-stack-example
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
user: "1000:1000"
volumes:
- "/etc/localtime:/etc/localtime:ro"
- "Headless_Configs:/Config:ro"
- "Headless_Configs:/Config"
- "Headless_Logs:/Logs"
- "RML:/RML"
restart: on-failure:5
Expand Down

0 comments on commit 2fb8ca0

Please sign in to comment.