Last active
June 18, 2019 17:51
-
-
Save gabrielmoura/21466230842c809daa094a21042e0665 to your computer and use it in GitHub Desktop.
Servidor Docker para ambiente de desenvolvimento
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
# v3 syntax | |
version: '3' | |
services: | |
postgres: | |
image: postgres | |
container_name: app-postgres | |
environment: | |
POSTGRES_PASSWORD: "password" | |
ports: | |
- "15432:5432" | |
volumes: | |
- /srv/http/docker:/var/lib/postgresql/data | |
networks: | |
- postgres-network | |
pgadmin: | |
image: dpage/pgadmin4 | |
container_name: app-pgadmin4 | |
environment: | |
PGADMIN_DEFAULT_EMAIL: "[email protected]" | |
PGADMIN_DEFAULT_PASSWORD: "password" | |
ports: | |
- "16543:8090" | |
depends_on: | |
- postgres | |
networks: | |
- postgres-network | |
# PHP (with Caddy) | |
app: | |
image: ambientum/php:7.1-caddy | |
container_name: app-app | |
volumes: | |
- .:/srv/http/websites/srmourav3/core | |
ports: | |
- "80:80" | |
links: | |
- postgres | |
networks: | |
postgres-network: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment