32 lines
664 B
YAML
32 lines
664 B
YAML
services:
|
|
# nginx:
|
|
# image: nginx
|
|
# volumes:
|
|
# - ./docker/images/nginx/conf.d/:/etc/nginx/conf.d
|
|
# - ./docker/images/nginx/static/:/var/www/
|
|
# - ./docker/images/nginx/devareapass:/var/passwords
|
|
# ports:
|
|
# - "80:80"
|
|
# depends_on:
|
|
# - portainer
|
|
# - api
|
|
# just fucking give me to run this
|
|
portainer:
|
|
image: portainer/portainer-ce:latest
|
|
volumes:
|
|
- data:/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
api:
|
|
build:
|
|
context: ./
|
|
dockerfile: ./SWAD.API/Dockerfile
|
|
bot:
|
|
build:
|
|
context: ./
|
|
dockerfile: ./TelegramBot/Dockerfile
|
|
redis:
|
|
image: redis
|
|
|
|
volumes:
|
|
data:
|