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
@@ -137,7 +137,7 @@ For convenience you may add a new entry into your hosts file.
137
137
138
138
```
139
139
docker volume create portainer_data
140
-
docker-compose -f portainer-docker-compose.yml -p portainer up -d
140
+
dockercompose -f portainer-docker-compose.yml -p portainer up -d
141
141
```
142
142
143
143
manage docker with [Portainer](https://www.portainer.io/solutions/docker) is the definitive container management tool for Docker, Docker Swarm with it's highly intuitive GUI and API.
@@ -161,21 +161,21 @@ docker ps -a
161
161
You can start the containers with the `up` command in daemon mode (by adding `-d` as an argument) or by using the `start` command:
162
162
163
163
```
164
-
docker-compose start
164
+
dockercompose start
165
165
```
166
166
167
167
### Stopping containers
168
168
169
169
```
170
-
docker-compose stop
170
+
dockercompose stop
171
171
```
172
172
173
173
### Removing containers
174
174
175
175
To stop and remove all the containers use the `down` command:
0 commit comments