-
-
Save ErliSoares/eff9c9178ebfa1733f0c06f996422a12 to your computer and use it in GitHub Desktop.
Api
This file contains hidden or 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
| COMPOSE_CONVERT_WINDOWS_PATHS=True | |
| SERVER_DB_PORT=????? | |
| SERVER_DB_USER=????? | |
| SERVER_DB_DATABASE=????? | |
| SERVER_DB_PASSWORD=????? | |
| SERVER_DB_HOST=atlantasistemas.com.br | |
| FRONTEND_VERSION=beta-0.0.55 | |
| FRONTEND_PORTA_EXTERNA=80 | |
| API_VERSION=beta-0.0.105 | |
| API_TOKEN=9z34nt7t45g2h44bt72o3bt23b7tr23onfq2c3t76b23ca23t1o | |
| API_PORTA_EXTERNA=8080 | |
| API_HOST_EXTERNO=atlantasistemas.com.br |
This file contains hidden or 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: '2' | |
| services: | |
| api: | |
| image: atlantasistemas/atlapi:${API_VERSION} | |
| restart: always | |
| environment: | |
| - SERVER_DB_PORT=${SERVER_DB_PORT} | |
| - SERVER_DB_USER=${SERVER_DB_USER} | |
| - SERVER_DB_DATABASE=${SERVER_DB_DATABASE} | |
| - SERVER_DB_PASSWORD=${SERVER_DB_PASSWORD} | |
| - SERVER_DB_HOST=${SERVER_DB_HOST} | |
| - TZ=America/Sao_Paulo | |
| volumes: | |
| - ./log/logsetting:/app/logsetting/ | |
| - ./log/data:/app/logs/ | |
| ports: | |
| - ${API_PORTA_EXTERNA}:8080 | |
| frontend: | |
| image: atlantasistemas/atlfrontend:${FRONTEND_VERSION} | |
| restart: always | |
| environment: | |
| - HOST_API=${API_HOST_EXTERNO}:${API_PORTA_EXTERNA} | |
| - TOKEN=${API_TOKEN} | |
| ports: | |
| - ${FRONTEND_PORTA_EXTERNA}:80 | |
| depends_on: | |
| - api |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment