Skip to content

Commit da3a722

Browse files
authored
Merge pull request laradock#1572 from luciano-jr/master
Add Portainer.io service
2 parents cc20ac2 + 51d253d commit da3a722

4 files changed

Lines changed: 30 additions & 1 deletion

File tree

DOCUMENTATION/content/documentation/index.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,21 @@ docker-compose up -d adminer
754754

755755

756756

757+
<br>
758+
<a name="Use-Portainer"></a>
759+
## Use Portainer
760+
761+
1 - Run the Portainer Container (`portainer`) with the `docker-compose up` command. Example:
762+
763+
```bash
764+
docker-compose up -d portainer
765+
```
766+
767+
2 - Open your browser and visit the localhost on port **9010**: `http://localhost:9010`
768+
769+
770+
771+
757772

758773
<br>
759774
<a name="Use-pgAdmin"></a>

DOCUMENTATION/content/introduction/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Beanstalkd - RabbitMQ - PHP Worker
9797
- **Queueing Management:**
9898
Beanstalkd Console - RabbitMQ Console
9999
- **Random Tools:**
100-
HAProxy - Certbot - Blackfire - Selenium - Jenkins - ElasticSearch - Kibana - Grafana - Mailhog - MailDev - Minio - Varnish - Swoole - Laravel Echo...
100+
HAProxy - Certbot - Blackfire - Selenium - Jenkins - ElasticSearch - Kibana - Grafana - Mailhog - MailDev - Minio - Varnish - Swoole - Portainer - Laravel Echo...
101101

102102
Laradock introduces the **Workspace** Image, as a development environment.
103103
It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose.

docker-compose.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -697,3 +697,14 @@ services:
697697
depends_on:
698698
- workspace
699699
tty: true
700+
701+
### Portainer ################################################
702+
portainer:
703+
build:
704+
context: ./portainer
705+
volumes:
706+
- ${DATA_PATH_HOST}/portainer_data:/data
707+
- /var/run/docker.sock:/var/run/docker.sock
708+
ports:
709+
- 9010:9000
710+

portainer/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FROM portainer/portainer
2+
3+
LABEL maintainer="luciano@lucianojr.com.br"

0 commit comments

Comments
 (0)