Last active
September 4, 2023 14:02
-
-
Save antonioanerao/c83f336eefe5e795b728be183fad4cad to your computer and use it in GitHub Desktop.
Exemplo de docker compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.3" | |
services: | |
sigep-auth: | |
container_name: sigep-auth | |
image: antonioanerao/laravel:latest | |
restart: always | |
networks: | |
- proxy | |
ports: | |
- 80:80 | |
volumes: | |
- ./laravel/:/laravel | |
networks: | |
proxy: | |
external: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment