Created
November 15, 2022 03:46
-
-
Save OliverVea/3016b2db6e01bdaa57c46409784c7eab to your computer and use it in GitHub Desktop.
Veachron Docker Compose file
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
| services: | |
| api: | |
| image: olivervea/veachron-api:latest | |
| environment: | |
| DB_HOST: db | |
| DB_USER: user | |
| DB_PASSWORD: password | |
| LOG_LEVEL: WARNING | |
| ui: | |
| image: olivervea/veachron-ui:latest | |
| db: | |
| image: postgres | |
| restart: always | |
| environment: | |
| POSTGRES_USER: user | |
| POSTGRES_PASSWORD: password | |
| POSTGRES_DB: veachron | |
| volumes: | |
| - postgresql:/var/lib/postgresql/data | |
| nginx: | |
| image: nginx:1.21 | |
| platform: linux | |
| ports: | |
| - 80:80 | |
| restart: on-failure | |
| volumes: | |
| - ./nginx.conf:/etc/nginx/nginx.conf | |
| volumes: | |
| postgresql: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment