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