You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug:
When doing balena push <fleet> the services do not seem to restart and the Restart Services button has to be manually pressed.
Are there any dependencies in the used docker-compose.yml file below here that will affect how the services are restarted/pushed etc?
Running balenaOS 2.58.6+rev1 on Generic x86_64
Used docker-compose.yml
Changes from original in this repo:
network_mode: bridge => host
Commented out: dns:
version: '2.2'
services:
os:
build:
context: .
dockerfile: Dockerfile.template
args:
OS_VERSION: ${OS_VERSION:-2.83.18_rev1}
DEVICE_TYPE: ${DEVICE_TYPE:-genericx86-64-ext}
privileged: true
restart: unless-stopped
stop_signal: SIGRTMIN+3
stop_grace_period: 30s
volumes:
- /lib/modules:/lib/modules:ro
- ${CONFIG_JSON:-./config.json}:/var/local/config.json
- boot:/mnt/boot
- data:/mnt/data
- state:/mnt/state
tmpfs:
- /run
- /run/lock
- /tmp
- /var/lib/journal
- /sys/fs/cgroup/systemd
# this is required for the dns option to have any effect
# see https://github.com/docker/compose/issues/2847#issuecomment-658999887
network_mode: host
#dns:
# - 127.0.0.2
tty: true
The text was updated successfully, but these errors were encountered:
Bug:
When doing
balena push <fleet>
the services do not seem to restart and theRestart Services
button has to be manually pressed.Are there any dependencies in the used docker-compose.yml file below here that will affect how the services are restarted/pushed etc?
Running
balenaOS 2.58.6+rev1
onGeneric x86_64
Used docker-compose.yml
Changes from original in this repo:
The text was updated successfully, but these errors were encountered: