TuxBot, A discord bot made in python
https://gnous.eu
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
724 B
30 lines
724 B
version: '3' |
|
|
|
volumes: |
|
production_postgres_data: {} |
|
production_postgres_data_backups: {} |
|
production_traefik: {} |
|
|
|
services: |
|
tuxbot: |
|
build: |
|
context: . |
|
dockerfile: ./compose/production/tuxbot/Dockerfile |
|
image: tuxbot_bot_production_tuxbot |
|
depends_on: |
|
- postgres |
|
env_file: |
|
- ./.envs/.production/.tuxbot |
|
- ./.envs/.production/.postgres |
|
command: /start |
|
|
|
postgres: |
|
build: |
|
context: . |
|
dockerfile: ./compose/production/postgres/Dockerfile |
|
image: tuxbot_bot_production_postgres |
|
volumes: |
|
- production_postgres_data:/var/lib/postgresql/data:Z |
|
- production_postgres_data_backups:/backups:z |
|
env_file: |
|
- ./.envs/.production/.postgres
|
|
|