Skip to content

Commit 086fb98

Browse files
committed
make rw explicit for podman
1 parent a4178c3 commit 086fb98

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
/data/
22
node_modules
33
.env
4-
./traefik_config
5-
./traefik_config/

compose.database.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
image: docker.io/bitnami/mongodb:${MONGODB_VERSION:-6.0}
2828
restart: always
2929
volumes:
30-
- ${MONGODB_HOST_PATH:-mongodb_data}:/bitnami/mongodb
30+
- ${MONGODB_HOST_PATH:-mongodb_data}:/bitnami/mongodb:rw
3131
environment:
3232
MONGODB_REPLICA_SET_MODE: ${MONGODB_REPLICA_SET_MODE:-primary}
3333
MONGODB_REPLICA_SET_NAME: ${MONGODB_REPLICA_SET_NAME:-rs0}

compose.traefik.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ services:
8282
tail -f /dev/null
8383
8484
volumes:
85-
- ./traefik_config:/traefik_config
85+
- traefik_config:/traefik_config
8686
restart: "no"
8787
traefik:
8888
image: docker.io/traefik:${TRAEFIK_RELEASE:-v3.4}
@@ -124,7 +124,7 @@ services:
124124
- ${TRAEFIK_HTTPS_PORT:-443}
125125
volumes:
126126
- traefik_ssl:/letsencrypt:rw
127-
- ./traefik_config:/traefik_config:Z
127+
- traefik_config:/traefik_config:Z
128128
# healthcheck:
129129
# test: ["CMD", "traefik", "healthcheck"]
130130
# interval: 30s
@@ -134,3 +134,4 @@ services:
134134
volumes:
135135
# this is for ssl shennanigans, users usually won't need to bother with it
136136
traefik_ssl: {driver: local}
137+
traefik_config: {driver: local}

0 commit comments

Comments
 (0)