-
Notifications
You must be signed in to change notification settings - Fork 87
Closed
Labels
Description
- This is a bug report
- This is a feature request
- I searched existing issues before opening this one
This maybe similar to
moby/moby#35288
moby/libnetwork#2341
moby/libnetwork#2015
Expected behavior
docker-compose -f zk.yml restart
would restart the container correctly
Actual behavior
$ docker-compose -f zk.yml restart
Restarting 0_zookeeper_1 ... error
ERROR: for 0_zookeeper_1 Cannot restart container a6944380cb96aa82ee6508cffbb3487e1698b9aaf2ef1a6ff62c3db220292ed8: failed to get network during CreateEndpoint: network zreirydw66jtrf0z1kjx8lnco not found
# excute again, it works.
# then, excute again, it failed
# excute again, it works.
# then, excute again, it failed
Steps to reproduce the behavior
Output of docker version
:
Client: Docker Engine - Community
Version: 19.03.2
API version: 1.40
Go version: go1.12.8
Git commit: 6a30dfc
Built: Thu Aug 29 05:29:11 2019
OS/Arch: linux/amd64
Experimental: false
Server: Docker Engine - Community
Engine:
Version: 19.03.2
API version: 1.40 (minimum version 1.12)
Go version: go1.12.8
Git commit: 6a30dfc
Built: Thu Aug 29 05:27:45 2019
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: 1.2.6
GitCommit: 894b81a4b802e4eb2a91d1ce216b8817763c29fb
runc:
Version: 1.0.0-rc8
GitCommit: 425e105d5a03fabd737a126ad93d62a9eeede87f
docker-init:
Version: 0.18.0
GitCommit: fec3683
Output of docker info
:
Client:
Debug Mode: false
Server:
Containers: 1
Running: 0
Paused: 0
Stopped: 1
Images: 13
Server Version: 19.03.2
Storage Driver: overlay2
Backing Filesystem: extfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
Swarm: active
NodeID: m3hsambx486sk19fy1wod0cqj
Is Manager: true
ClusterID: o6dplgv86jcrdrbxzitl32yc7
Managers: 1
Nodes: 1
Default Address Pool: 10.0.0.0/8
SubnetSize: 24
Data Path Port: 4789
Orchestration:
Task History Retention Limit: 5
Raft:
Snapshot Interval: 10000
Number of Old Snapshots to Retain: 0
Heartbeat Tick: 1
Election Tick: 10
Dispatcher:
Heartbeat Period: 5 seconds
CA Configuration:
Expiry Duration: 3 months
Force Rotate: 0
Autolock Managers: false
Root Rotation In Progress: false
Node Address: 127.0.0.1
Manager Addresses:
127.0.0.1:2377
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: 894b81a4b802e4eb2a91d1ce216b8817763c29fb
runc version: 425e105d5a03fabd737a126ad93d62a9eeede87f
init version: fec3683
Security Options:
apparmor
seccomp
Profile: default
Kernel Version: 5.0.0-37-generic
Operating System: Ubuntu 18.04.3 LTS
OSType: linux
Architecture: x86_64
CPUs: 4
Total Memory: 19.47GiB
Name: ding
ID: 5YGV:TQ6C:ZGP7:UE43:CFOK:GHP5:6X2K:RB7U:QBN7:J3IH:2RIQ:6FNV
Docker Root Dir: /data/docker
Debug Mode: false
Registry: https://index.docker.io/v1/
Labels:
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
WARNING: API is accessible on http://127.0.0.1:1433 without encryption.
Access to the remote API is equivalent to root access on the host. Refer
to the 'Docker daemon attack surface' section in the documentation for
more information: https://docs.docker.com/engine/security/security/#docker-daemon-attack-surface
WARNING: No swap limit support
Output of docker network ls
:
NETWORK ID NAME DRIVER SCOPE
a0c5dde1871d bridge bridge local
zreirydw66jt dev overlay swarm
c7871d5f9166 develop bridge local
8244a98af18a docker_gwbridge bridge local
6e4c766edd81 host host local
xqqui9bmoyx5 ingress overlay swarm
e9fa17dbf86a none null local
Additional environment details (AWS, VirtualBox, physical, etc.)
zk.yml
version: '3.6'
services:
zookeeper:
image: zookeeper
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/localtime:/etc/timezone:ro
- /data/demo/zookeeper/conf:/conf
- /data/demo/zookeeper/data:/data
- /data/demo/zookeeper/datalog:/datalog
- /data/logs/zookeeper:/logs
hostname: zookeeper
ports:
- 2181:2181
networks: ['dev']
restart: always
environment:
- TERM=linux
- ZOO_LOG_DIR=/logs/
- ZOO_LOG4J_PROP=INFO,ROLLINGFILE
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
- JVMFLAGS=-Xmx1024M
networks:
dev:
external: true
name: dev
driver: overlay
# create network like this
$ docker network create --driver overlay --attachable --subnet 172.30.100.0/24 dev
# start container like this
$ docker-compose -f zk.yml up -d
# restart container like this
$ docker-compose -f zk.yml restart
No other container on my os.
Is anyone can help?
rdehouss and siddjain