Skip to content

Commit

Permalink
docker: Add SELinux labels for rootless Podman compatibility
Browse files Browse the repository at this point in the history
Volumes need to be properly re-labelled on rootless Podman
setups on Fedora.

The SELinux re-labeling bind mount option is ignored on platforms
without SELinux, so it shouldn't break existing setups.
  • Loading branch information
plaes committed Dec 24, 2023
1 parent 24ce6fa commit 355a8ef
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ services:
command: -c /etc/chirpstack
restart: unless-stopped
volumes:
- ./configuration/chirpstack:/etc/chirpstack
- ./lorawan-devices:/opt/lorawan-devices
- ./configuration/chirpstack:/etc/chirpstack:z
- ./lorawan-devices:/opt/lorawan-devices:z
depends_on:
- postgres
- mosquitto
Expand All @@ -25,7 +25,7 @@ services:
ports:
- 1700:1700/udp
volumes:
- ./configuration/chirpstack-gateway-bridge:/etc/chirpstack-gateway-bridge
- ./configuration/chirpstack-gateway-bridge:/etc/chirpstack-gateway-bridge:z
environment:
- INTEGRATION__MQTT__EVENT_TOPIC_TEMPLATE=eu868/gateway/{{ .GatewayID }}/event/{{ .EventType }}
- INTEGRATION__MQTT__STATE_TOPIC_TEMPLATE=eu868/gateway/{{ .GatewayID }}/state/{{ .StateType }}
Expand All @@ -40,7 +40,7 @@ services:
ports:
- 3001:3001
volumes:
- ./configuration/chirpstack-gateway-bridge:/etc/chirpstack-gateway-bridge
- ./configuration/chirpstack-gateway-bridge:/etc/chirpstack-gateway-bridge:z
depends_on:
- mosquitto

Expand All @@ -57,24 +57,24 @@ services:
image: postgres:14-alpine
restart: unless-stopped
volumes:
- ./configuration/postgresql/initdb:/docker-entrypoint-initdb.d
- postgresqldata:/var/lib/postgresql/data
- ./configuration/postgresql/initdb:/docker-entrypoint-initdb.d:Z
- postgresqldata:/var/lib/postgresql/data:Z
environment:
- POSTGRES_PASSWORD=root

redis:
image: redis:7-alpine
restart: unless-stopped
volumes:
- redisdata:/data
- redisdata:/data:z

mosquitto:
image: eclipse-mosquitto:2
restart: unless-stopped
ports:
- 1883:1883
volumes:
- ./configuration/mosquitto/config/:/mosquitto/config/
- ./configuration/mosquitto/config/:/mosquitto/config/:Z

volumes:
postgresqldata:
Expand Down

0 comments on commit 355a8ef

Please sign in to comment.