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
@@ -132,7 +132,7 @@ For convenience you may add a new entry into your hosts file.
132
132
133
133
```
134
134
docker volume create portainer_data
135
-
docker-compose -f portainer-docker-compose.yml -p portainer up -d
135
+
dockercompose -f portainer-docker-compose.yml -p portainer up -d
136
136
```
137
137
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.
138
138
@@ -155,21 +155,21 @@ docker ps -a
155
155
You can start the containers with the `up` command in daemon mode (by adding `-d` as an argument) or by using the `start` command:
156
156
157
157
```
158
-
docker-compose start
158
+
dockercompose start
159
159
```
160
160
161
161
### Stopping containers
162
162
163
163
```
164
-
docker-compose stop
164
+
dockercompose stop
165
165
```
166
166
167
167
### Removing containers
168
168
169
169
To stop and remove all the containers use the `down` command:
0 commit comments