├── .dockerignore ├── .gitignore ├── .gitmodules ├── README.md ├── docker-compose.yml └── env-sample /.dockerignore: -------------------------------------------------------------------------------- 1 | .dockerignore 2 | .git 3 | ./apo 4 | ./protheus_data 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endersonmaia/totvs-protheus-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endersonmaia/totvs-protheus-docker/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endersonmaia/totvs-protheus-docker/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endersonmaia/totvs-protheus-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /env-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endersonmaia/totvs-protheus-docker/HEAD/env-sample --------------------------------------------------------------------------------